namespace YBEE.EQM.Application; /// /// 家长问卷填答状态输入参数 /// public class ExamPatriarchQuestionnaireProgressOutput { /// /// 主键 /// [Required] public long Id { get; set; } /// /// 问卷编码 /// [Required] public string QuestionnaireCode { get; set; } /// /// 监测学生ID /// [Required] public long ExamStudentId { get; set; } /// /// 填答手机号码 /// [StringLength(20)] public string Mobile { get; set; } /// /// 提交时间 /// public DateTime? SubmitTime { get; set; } /// /// 是否已完成 /// [Required] public bool IsCompleted { get; set; } = false; /// /// 创建时间 /// [Required] public DateTime CreateTime { get; set; } /// /// 监测学生 /// public ExamStudentOrgOutput ExamStudent { get; set; } }