25 lines
656 B
C#
25 lines
656 B
C#
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();
|
||
} |