| 1234567891011121314151617181920 |
- using YBEE.EQM.Core;
- namespace YBEE.EQM.Application;
- public static class NceeUtil
- {
- /// <summary>
- /// 选择方向科目列表
- /// </summary>
- public static List<CourseMiniOutput> DirectionCourses { get; } =
- [
- new(){ Id = 4, Name = "物理", ShortName = "物" },
- new(){ Id = 8, Name = "历史", ShortName = "史" },
- ];
- /// <summary>
- /// 高中选择科目,化学、生物、政治、地理
- /// </summary>
- public static List<short> ChooseCourses { get; } = [CourseConst.HUA_XUE, CourseConst.SHENG_WU, CourseConst.ZHENG_ZHI, CourseConst.DI_LI];
- }
|