using System; using System.Collections.Generic; using CB.Entity; namespace CB.Interface.Infrastructure { public interface ISysAuthorityService : IRepository { /// /// 更新用户组导航权限 /// /// 用户组ID /// 权限页ID /// bool UpdateUserGroupAuthority(int groupId, string authority); } }