using System.Collections.Generic; namespace YBEE.EQM.Core; /// /// 角色数据权限范围 /// public class RoleDataScope { /// /// 可访问学段列表 /// public List EducationStages { get; set; } = new(); /// /// 可访问机构ID列表 /// public List SysOrgIds { get; set; } = new(); }