using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace LearningOfficer.OA.Common.Dtos.School { public class GradeResult { /// /// id /// public int gradeId { get; set; } /// /// 名称(例:高三) /// public string value1 { get; set; } /// /// 级数(例:高2026) /// public string value2 { get; set; } } }