using YBEE.EQM.Core;
namespace YBEE.EQM.Application;
///
/// 抽样学生输出参数
///
public class ExamSampleStudentOutput
{
///
/// 主键
///
[Required]
public long Id { get; set; }
///
/// 抽样方案ID
///
[Required]
public int ExamSampleId { get; set; }
///
/// 监测样本学生ID
///
[Required]
public long ExamStudentId { get; set; }
///
/// 监测号
///
[Required]
public string ExamNumber { get; set; }
///
/// 序号
///
[Required]
public int Sequence { get; set; }
///
/// 监测抽样类型
///
[Required]
public ExamSampleType ExamSampleType { get; set; }
///
/// 是否为特殊学生
///
[Required]
public bool IsSpecialStudent { get; set; } = false;
///
/// 前期总成绩
///
[Required]
public decimal PreTotalScore { get; set; }
///
/// 监测学生
///
public ExamStudentOutput ExamStudent { get; set; }
}