12345678910111213141516171819202122232425262728293031323334353637 |
- using System;
- using System.Collections.Generic;
- using System.Linq.Expressions;
- using System.Threading.Tasks;
- using YiSha.Entity.SystemManage;
- using YiSha.Model.Param.SystemManage;
- namespace YiSha.IService.SystemManage
- {
-
-
-
-
-
- public partial interface IMenuService
- {
- #region 获取数据
- Task<List<MenuEntity>> GetListPartial(MenuListParam param);
- Task<MenuEntity> GetEntityPartial(int id);
- Task<int> GetMaxSortPartial(long parentId);
- bool ExistMenuNamePartial(MenuEntity entity);
- #endregion
- #region 提交数据
- Task SaveFormPartial(MenuEntity entity);
- Task DeleteFormPartial(string ids);
- #endregion
- #region 私有方法
- #endregion
- }
- }
|