12345678910111213141516171819 |
- using System;
- using System.Collections.Generic;
- using CB.Entity;
- namespace CB.Interface.Infrastructure
- {
- public interface ISysGroupAuthorityService : IRepository<SysGroupAuthorityInfo>
- {
- /// <summary>
- /// 获取用户组所对应的权限导航ID列表
- /// </summary>
- /// <param name="groupId"></param>
- /// <param name="parentId"></param>
- /// <returns></returns>
- IList<int> GetUserGroupAuthorityList(int groupId);
- }
- }
|