Files
tnb.server/system/Tnb.Systems.Interfaces/System/IModuleFormService.cs
2024-04-23 10:16:16 +08:00

24 lines
617 B
C#
Raw Blame History

This file contains ambiguous Unicode characters
This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.
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();
}