namespace YBEE.EQM.Application; /// /// 缺测替补抽样输出参数 /// public class ExamSampleReplaceOutput : DEntityOutput { /// /// 抽样方案ID /// [Required] public int ExamSampleId { get; set; } /// /// 监测计划ID /// [Required] public int ExamPlanId { get; set; } /// /// 机构ID /// [Required] public short SysOrgId { get; set; } /// /// 校区ID /// public short? SysOrgBranchId { get; set; } /// /// 监测年级ID /// [Required] public short ExamGradeId { get; set; } /// /// 年级ID /// [Required] public short GradeId { get; set; } /// /// 班级ID /// [Required] public long SchoolClassId { get; set; } /// /// 班号 /// [Required] public short ClassNumber { get; set; } /// /// 缺测学生抽样ID /// [Required] public long AbsentExamSampleStudentId { get; set; } /// /// 替补学生抽样ID /// [Required] public long ReplaceExamSampleStudentId { get; set; } /// /// 备注 /// public string Remark { get; set; } /// /// 替补学生也缺测 /// [Required] public bool IsReplaceAbsent { get; set; } /// /// 替补学生标注缺测是否已锁定 /// [Required] public bool IsReplaceAbsentLocked { get; set; } /// /// 抽样方案 /// public ExamSampleLiteOutput ExamSample { get; set; } /// /// 缺测学生 /// public ExamSampleStudentOutput AbsentExamSampleStudent { get; set; } /// /// 替补学生 /// public ExamSampleStudentOutput ReplaceExamSampleStudent { get; set; } /// /// 班级 /// public SchoolClassLiteOutput SchoolClass { get; set; } /// /// 校区 /// public SysOrgLiteOutput SysOrgBranch { get; set; } /// /// 监测年级 /// public ExamGradeOutput ExamGrade { get; set; } }