12345678910111213141516171819 |
- using System;
- using System.Collections.Generic;
- using CB.Entity;
- namespace CB.Interface.Infrastructure
- {
- public interface ISysAuthorityService : IRepository<SysAuthorityInfo>
- {
- /// <summary>
- /// 更新用户组导航权限
- /// </summary>
- /// <param name="groupId">用户组ID</param>
- /// <param name="authority">权限页ID</param>
- /// <returns></returns>
- bool UpdateUserGroupAuthority(int groupId, string authority);
- }
- }
|