添加项目文件。
This commit is contained in:
25
system/Tnb.Systems.Interfaces/System/IModuleColumnService.cs
Normal file
25
system/Tnb.Systems.Interfaces/System/IModuleColumnService.cs
Normal file
@@ -0,0 +1,25 @@
|
||||
using JNPF.Systems.Entitys.Dto.ModuleColumn;
|
||||
using JNPF.Systems.Entitys.System;
|
||||
|
||||
namespace JNPF.Systems.Interfaces.System;
|
||||
|
||||
/// <summary>
|
||||
/// 功能列表
|
||||
/// 版 本:V3.2
|
||||
/// 版 权:拓通智联科技有限公司(http://www.tuotong-tech.com)
|
||||
/// 日 期:2021-06-01.
|
||||
/// </summary>
|
||||
public interface IModuleColumnService
|
||||
{
|
||||
/// <summary>
|
||||
/// 列表.
|
||||
/// </summary>
|
||||
/// <param name="moduleId">功能id.</param>
|
||||
/// <returns></returns>
|
||||
Task<List<ModuleColumnEntity>> GetList(string? moduleId = default);
|
||||
|
||||
/// <summary>
|
||||
/// 获取用户功能列表.
|
||||
/// </summary>
|
||||
Task<dynamic> GetUserModuleColumnList();
|
||||
}
|
||||
Reference in New Issue
Block a user