ISysAuthorityService.cs 495 B

12345678910111213141516171819
  1. using System;
  2. using System.Collections.Generic;
  3. using CB.Entity;
  4. namespace CB.Interface.Infrastructure
  5. {
  6. public interface ISysAuthorityService : IRepository<SysAuthorityInfo>
  7. {
  8. /// <summary>
  9. /// 更新用户组导航权限
  10. /// </summary>
  11. /// <param name="groupId">用户组ID</param>
  12. /// <param name="authority">权限页ID</param>
  13. /// <returns></returns>
  14. bool UpdateUserGroupAuthority(int groupId, string authority);
  15. }
  16. }