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.User
{
public class StudentResult
{
///
/// 学生Id
///
public long Id { get; set; }
///
/// 学生姓名
///
public string Name { get; set; } = null!;
///
/// 学生状态
///
public PositionRelationStatusEnum Status { get; set; }
///
/// 学校id
///
public long SchoolId { get; set; }
///
/// 学校名称
///
public string SchoolName { get; set; }
///
/// 班级名称
///
public string ClassName { get; set; } = null!;
///
/// 备 注:年级
/// 默认值:
///
public string GradeLevel { get; set; }
///
/// 备 注:所属届
/// 默认值:
///
public int GraduationYear { get; set; }
///
/// 账号
///
public string Account { get; set; }
}
}