using YBEE.EQM.Core; namespace YBEE.EQM.Application; /// /// 添加监测科目输入参数 /// public class AddExamCourseInput { /// /// 监测计划ID /// [Required] public int ExamPlanId { get; set; } /// /// 监测年级ID /// [Required] public int ExamGradeId { get; set; } /// /// 年级ID /// [Required] public short GradeId { get; set; } /// /// 科目ID /// [Required] public short CourseId { get; set; } /// /// 总分 /// [Required] public decimal TotalScore { get; set; } /// /// 分数段类型 /// [Required] public ExamScoreRangeType ExamScoreRangeType { get; set; } /// /// 成绩上报配置 /// [Required] public ExamCourseScoreReportConfig ScoreReportConfig { get; set; } } /// /// 更新监测科目输入参数 /// public class UpdateExamCourseInput : AddExamCourseInput { /// /// 主键 /// [Required] public int Id { get; set; } } /// /// 查询监测年级输入参数 /// public class QueryExamCourseInput { /// /// 监测计划ID /// [Required] public int ExamPlanId { get; set;} /// /// 年级ID /// public short? GradeId { get; set; } }