ISysGroupAuthorityService.cs 491 B

12345678910111213141516171819
  1. using System;
  2. using System.Collections.Generic;
  3. using CB.Entity;
  4. namespace CB.Interface.Infrastructure
  5. {
  6. public interface ISysGroupAuthorityService : IRepository<SysGroupAuthorityInfo>
  7. {
  8. /// <summary>
  9. /// 获取用户组所对应的权限导航ID列表
  10. /// </summary>
  11. /// <param name="groupId"></param>
  12. /// <param name="parentId"></param>
  13. /// <returns></returns>
  14. IList<int> GetUserGroupAuthorityList(int groupId);
  15. }
  16. }