using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; using UserCenter.Model.Enum; namespace LearningOfficer.OA.Common.Dtos.Student { public class StudentDetailInfoResult { public long Id { get; set; } /// /// 学校id /// public long SchoolId { get; set; } /// /// 备 注:学校名称 /// 默认值: /// public string SchoolName { get; set; } /// /// 班级id /// public long ClassId { get; set; } /// /// 备 注:班级名称 /// 默认值: /// public string ClassName { get; set; } /// /// 姓名 /// public string UserName { get; set; } = null!; /// /// 备注 /// public string Remark { get; set; } = null!; /// /// 备 注:年级 /// 默认值: /// public string GradeLevel { get; set; } /// /// 备 注:所属届 /// 默认值: /// public int GraduationYear { get; set; } /// /// 学生状态 1在读 0转班 10退学 /// public PositionRelationStatusEnum Status { get; set; } public List? StudentParents { get; set; } } public class StudentParentInfoResult { public long id { get; set; } /// /// 家长姓名 /// public string ParentName { get; set; } = null!; /// /// 字典表-关系 /// public long ParentRelation { get; set; } /// /// 字典表-关系名称 /// public string? ParentRelationName { get; set; } /// /// 电话 /// public string ParentPhone { get; set; } = null!; } public class GetStudentClassesInfoResult { /// /// 班级id /// public long Id { get; set; } /// /// 备 注:班级名称 /// 默认值: /// public string ClassName { get; set; } = null!; /// /// 学校id /// public long SchoolId { get; set; } /// /// 备 注:学校名称 /// 默认值: /// public string SchoolName { get; set; } = null!; /// /// 备 注:年级 /// 默认值: /// public string GradeLevel { get; set; } = null!; /// /// 备 注:所属届 /// 默认值: /// public int GraduationYear { get; set; } /// /// 学生状态 1在读 0转班 10退学 /// public PositionRelationStatusEnum Status { get; set; } } }