RoleDataScope.cs 416 B

123456789101112131415161718
  1. using System.Collections.Generic;
  2. namespace YBEE.EQM.Core;
  3. /// <summary>
  4. /// 角色数据权限范围
  5. /// </summary>
  6. public class RoleDataScope
  7. {
  8. /// <summary>
  9. /// 可访问学段列表
  10. /// </summary>
  11. public List<EducationStage> EducationStages { get; set; } = new();
  12. /// <summary>
  13. /// 可访问机构ID列表
  14. /// </summary>
  15. public List<short> SysOrgIds { get; set; } = new();
  16. }