using YBEE.EQM.Core;
namespace YBEE.EQM.Application;
///
/// 监测科目简要输出参数
///
public class ExamCourseLiteOutput
{
///
/// 主键
///
[Required]
public int Id { get; set; }
///
/// 监测计划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; }
///
/// 科目
///
public CourseMiniOutput Course { get; set; }
///
/// 成绩上报配置
///
public ExamCourseScoreReportConfig ScoreReportConfig { get; set; }
///
/// 分数段类型
///
public ExamScoreRangeType ExamScoreRangeType { get; set; }
}
///
/// 监测科目输出参数
///
public class ExamCourseOutput : DEntityOutput
{
///
/// 监测计划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; }
///
/// 分数段类型
///
public ExamScoreRangeType ExamScoreRangeType { get; set; }
///
/// 科目
///
public CourseLiteOutput Course { get; set; }
///
/// 成绩上报配置
///
public ExamCourseScoreReportConfig ScoreReportConfig { get; set; }
///
/// 监测年级
///
public ExamGradeOutput ExamGrade { get; set; }
}