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