24 lines
617 B
C#
24 lines
617 B
C#
using JNPF.Systems.Entitys.System;
|
||
|
||
namespace JNPF.Systems.Interfaces.System;
|
||
|
||
/// <summary>
|
||
/// 表单权限
|
||
/// 版 本:V3.2
|
||
/// 版 权:拓通智联科技有限公司(http://www.tuotong-tech.com)
|
||
/// 日 期:2021-06-01.
|
||
/// </summary>
|
||
public interface IModuleFormService
|
||
{
|
||
/// <summary>
|
||
/// 表单权限列表.
|
||
/// </summary>
|
||
/// <param name="moduleId">功能id.</param>
|
||
/// <returns></returns>
|
||
Task<List<ModuleFormEntity>> GetList(string? moduleId = default);
|
||
|
||
/// <summary>
|
||
/// 获取用户功能表单.
|
||
/// </summary>
|
||
Task<dynamic> GetUserModuleFormList();
|
||
} |