using YBEE.EQM.Core; namespace YBEE.EQM.Application; /// /// 年级信息服务 /// public interface IGradeService { /// /// 根据ID获取年级信息 /// /// /// Task GetById(int id); /// /// 根据学段获取年级列表 /// /// /// Task> GetListByEducationStage(EducationStage stage); /// /// 根据学期和学段获取年级年份 /// /// /// Task> QueryGradeYearList(QueryGradeYearInput input); /// /// 获取全部年级列表 /// /// Task> GetAllList(); }