IMenuAuthorizeBLL.cs 379 B

12345678910111213141516
  1. using System.Collections.Generic;
  2. using System.Threading.Tasks;
  3. using YiSha.Model.Result;
  4. using YiSha.Util.Model;
  5. using YiSha.Web.Code;
  6. namespace YiSha.IBusiness.SystemManage
  7. {
  8. public partial interface IMenuAuthorizeBLL
  9. {
  10. #region 获取数据
  11. Task<TData<List<MenuAuthorizeInfo>>> GetAuthorizeListPartial(OperatorInfo user);
  12. #endregion
  13. }
  14. }