using Microsoft.EntityFrameworkCore; using System; using System.Collections.Generic; using System.ComponentModel.DataAnnotations.Schema; using System.ComponentModel.DataAnnotations; using System.Linq; using System.Text; using System.Threading.Tasks; using VOL.Entity.Enum; namespace VOL.Model.Norm.Response { /// /// 参赛学生 /// public class EntryStudentModel { public int Id { get; set; } /// /// 学校编号 /// public string SchoolCode { get; set; } /// /// 年级Id /// public int GradeId { get; set; } /// /// 年级名称 /// public string GradeName { get; set; } /// /// 班级Id /// public int ClassId { get; set; } /// /// 班级名称 /// public string ClassName { get; set; } /// /// 学生学号 /// public string StudentNo { get; set; } /// /// 学生名称 /// public string StudentName { get; set; } /// /// 性别 /// public SexType Sex { get; set; } /// /// 年龄 /// public int Age { get; set; } } }