IMenuService.cs 884 B

12345678910111213141516171819202122232425262728293031323334353637
  1. using System;
  2. using System.Collections.Generic;
  3. using System.Linq.Expressions;
  4. using System.Threading.Tasks;
  5. using YiSha.Entity.SystemManage;
  6. using YiSha.Model.Param.SystemManage;
  7. namespace YiSha.IService.SystemManage
  8. {
  9. /// <summary>
  10. /// 创 建:admin
  11. /// 日 期:2021-03-01 14:54
  12. /// 描 述:菜单服务接口类
  13. /// </summary>
  14. public partial interface IMenuService
  15. {
  16. #region 获取数据
  17. Task<List<MenuEntity>> GetListPartial(MenuListParam param);
  18. Task<MenuEntity> GetEntityPartial(int id);
  19. Task<int> GetMaxSortPartial(long parentId);
  20. bool ExistMenuNamePartial(MenuEntity entity);
  21. #endregion
  22. #region 提交数据
  23. Task SaveFormPartial(MenuEntity entity);
  24. Task DeleteFormPartial(string ids);
  25. #endregion
  26. #region 私有方法
  27. #endregion
  28. }
  29. }