123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354 |
- using System.Collections.Generic;
- using System.Threading.Tasks;
- using YiSha.Entity.ZxOrTkMenuManagerModels;
- using YiSha.Enum.TK;
- using YiSha.Model.Param.TK;
- using YiSha.Model.Result;
- using YiSha.Model.Result.TK;
- using YiSha.Util.Model;
- namespace YiSha.IBusiness.TK
- {
-
-
-
-
-
- public partial interface IMenuManagerModelsBLL
- {
-
-
-
-
-
- Task<TData<List<MenuManagerModelsCommonEntity>>> GetMenuNameIsAllChildrenListJson();
-
-
-
-
-
- Task<TData<List<ZtreeInfo>>> GetMenuTreeListJson(MenuManagerModelsTypeEnum? type);
-
-
-
-
- Task<TData<List<MenuManagerModelsTreeListModel>>> GetZxMenuManagerTreeList(MenuManagerModelsListParam param);
-
-
-
-
-
- Task<TData<int>> SaveFormPartial(MenuManagerModelsCommonEntity entity);
-
-
-
-
-
- Task<TData<int>> DeleteFormByIdPartial(string ids);
- }
- }
|