using YBEE.EQM.Core;
namespace YBEE.EQM.Application;
///
/// 查询学年输入参数
///
public class QueryGradeYearInput
{
///
/// 学期ID
///
[Comment("学期ID")]
[Required]
public short SemesterId { get; set; }
///
/// 学段
///
[Comment("学段")]
[Required]
public EducationStage EducationStage { get; set; }
}