using YBEE.EQM.Core; namespace YBEE.EQM.Application; /// /// 学期输出参数 /// public class SemesterOutput { /// /// 主键 /// [Required] public int Id { get; set; } /// /// 学期类型 /// [Required] public SemesterType SemesterType { get; set; } /// /// 名称,2023至2024学年上学期 /// [Required] public string Name { get; set; } /// /// 简称,2023~2024上 /// [Required] public string ShortName { get; set; } /// /// 别名,2023年秋季 /// [Required] public string NickName { get; set; } /// /// 别名简称,2023秋 /// [Required] public string NickShortName { get; set; } /// /// 开始年份 /// [Required] public short BeginYear { get; set; } /// /// 结束年份 /// [Required] public short EndYear { get; set; } /// /// 是否当前学年 /// [Required] public bool IsCurrent { get; set; } /// /// 备注 /// public string Remark { get; set; } }