namespace YBEE.EQM.Application;
///
/// 添加试卷大题输入参数
///
public class AddExamPaperQuestionMajorInput
{
///
/// 双向细目表头ID
///
[Required]
public int ExamPaperId { get; set; }
///
/// 顺序
///
[Required]
public int Sequence { get; set; }
///
/// 题号
///
[Required, StringLength(20)]
public string Number { get; set; }
///
/// 标题
///
[StringLength(100)]
public string Title { get; set; } = "";
///
/// 提示语
///
[StringLength(200)]
public string Hint { get; set; } = "";
///
/// 分值
///
[Required]
public decimal Score { get; set; } = 0;
///
/// 备注
///
[StringLength(200)]
public string Remark { get; set; } = "";
}
///
/// 更新试卷大题输入参数
///
public class UpdateExamPaperQuestionMajorInput : AddExamPaperQuestionMajorInput
{
///
/// 主键
///
[Required]
public int Id { get; set; }
}