using System.Collections.Generic;
namespace YBEE.EQM.Core;
///
/// 用户权限
///
public class UserPermission
{
///
/// 数据权限
///
public DataScope Data { get; set; }
///
/// 数据权限范围
///
public class DataScope
{
///
/// 双向细目表
///
public List TwoWayCheckLists { get; set; } = new();
///
/// 问题建议
///
public List QuestionSuggestions { get; set; } = new();
///
/// 试卷范围
///
public class ExamPaperScope
{
///
/// 监测计划ID
///
public int ExamPlanId { get; set; }
///
/// 年级ID
///
public short GradeId { get; set; }
///
/// 科目ID
///
public short CourseId { get; set; }
}
}
}