using System.Collections.Generic;
namespace YBEE.EQM.Core;
///
/// 角色数据权限范围
///
public class RoleDataScope
{
///
/// 可访问学段列表
///
public List EducationStages { get; set; } = new();
///
/// 可访问机构ID列表
///
public List SysOrgIds { get; set; } = new();
///
/// 双向细目表编制科目列表
///
public List TwoWayTables { get; set; } = new();
///
/// 双向细目表
///
public class TwoWayTable
{
///
/// 监测计划ID
///
public int ExamPlanId { get; set; }
///
/// 年级ID
///
public short GradeId { get; set; }
///
/// 科目ID
///
public short CourseId { get; set; }
}
}