using YBEE.EQM.Core;
namespace YBEE.EQM.Application;
///
/// 高中划线分析计划输出参数
///
public class NceePlanOutput: DEntityOutput
{
///
/// 学期ID
///
[Required]
public short SemesterId { get; set; }
///
/// 名称
///
[Required]
public string Name { get; set; }
///
/// 全称
///
[Required]
public string FullName { get; set; }
///
/// 简称
///
[Required]
public string ShortName { get; set; }
///
/// 备注
///
public string Remark { get; set; } = "";
///
/// 配置
///
[Required]
public NceePlanConfig Config { get; set; }
///
/// 状态
///
[Required]
public ExamStatus Status { get; set; }
///
/// 开始时间
///
public DateTime? BeginTime { get; set; }
///
/// 结束时间
///
public DateTime? EndTime { get; set; }
///
/// 学期
///
public SemesterOutput Semester { get; set; }
///
/// 年级
///
public GradeOutput Grade { get; set; }
///
/// 划线参与列表
///
public List NceeBaseLines { get; set; }
}