using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace LearningOfficer.OA.Common.Dtos.Classes { public class ClassesAndFollowResult { public long Id { get; set; } /// /// 班级id /// public string Name { get; set; } = null!; /// /// 备 注:年级 /// 默认值: /// public string GradeLevel { get; set; } /// /// 备 注:所属届 /// 默认值: /// public int GraduationYear { get; set; } /// /// 学习官名称 /// public string FollowName { get; set; } = null!; /// /// 学习官id /// public long FollowId { get; set; } } }