平安校园
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

RelationRolePermission.cs 522 B

4 maanden geleden
123456789101112131415161718192021222324252627282930313233
  1. 
  2. //
  3. namespace SafeCampus.System;
  4. /// <summary>
  5. /// SYS_ROLE_HAS_PERMISSION
  6. /// 角色权限关系扩展
  7. /// </summary>
  8. public class RelationRolePermission
  9. {
  10. /// <summary>
  11. /// 数据范围
  12. /// </summary>
  13. public string ScopeCategory { get; set; }
  14. /// <summary>
  15. /// 自定义机构范围列表
  16. /// </summary>
  17. public List<long> ScopeDefineOrgIdList { get; set; } = new List<long>();
  18. /// <summary>
  19. /// 接口Url
  20. /// </summary>
  21. public string ApiUrl { get; set; }
  22. }