namespace YBEE.EQM.Application;
///
/// 更新学期信息输入参数
///
public class UpdateSemesterInput
{
///
/// 主键
///
public int Id { 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 bool IsCurrent { get; set; }
///
/// 备注
///
public string Remark { get; set; }
}