using System; using System.Collections.Generic; using CB.Entity; namespace CB.Interface.Infrastructure { public interface ISysGroupAuthorityService : IRepository { /// /// 获取用户组所对应的权限导航ID列表 /// /// /// /// IList GetUserGroupAuthorityList(int groupId); } }