namespace YBEE.EQM.Application; /// /// 试卷大题输出参数 /// public class ExamPaperQuestionMajorOutput : DEntityOutput { /// /// 双向细目表头ID /// [Required] public int ExamPaperId { get; set; } /// /// 顺序 /// [Required] public int Sequence { get; set; } /// /// 题号 /// [Required] public string Number { get; set; } /// /// 标题 /// public string Title { get; set; } /// /// 提示语 /// public string Hint { get; set; } /// /// 分值 /// [Required] public decimal Score { get; set; } /// /// 备注 /// public string Remark { get; set; } }