namespace YBEE.EQM.Application; /// /// 家长问卷填答状态输入参数 /// public class ExamPatriarchQuestionnaireProgressInput { /// /// 问卷编码 /// [Required, StringLength(20)] 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 class ExportExamPatriarchQuestionnaireProgressInput { /// /// 监测计划ID /// public int ExamPlanId { get; set;} }