using JNPF.Systems.Entitys.System; namespace JNPF.Systems.Interfaces.System; /// /// 功能按钮 /// 版 本:V3.2 /// 版 权:拓通智联科技有限公司(http://www.tuotong-tech.com) /// 日 期:2021-06-01. /// public interface IModuleButtonService { /// /// 列表. /// /// 功能id. /// Task> GetList(string? moduleId = default); /// /// 添加按钮. /// /// /// Task Create(ModuleButtonEntity entity); /// /// 获取用户功能按钮. /// Task GetUserModuleButtonList(); }