using System; using System.Collections.Generic; using System.ComponentModel.DataAnnotations; using System.Linq; using System.Text; using System.Threading.Tasks; using VOL.Entity.Enum; namespace VOL.Model.School.Request { /// /// 导入学生 /// public class ImportStudentParam { /// ///学号 /// [Display(Name = "学号")] public string StudentNo { get; set; } /// ///年级 /// [Display(Name = "年级")] public string GradeName { get; set; } /// ///班级 /// [Display(Name = "班级")] public string ClassName { get; set; } /// ///姓名 /// [Display(Name = "姓名")] public string StudentName { get; set; } /// ///身份证 /// [Display(Name = "身份证")] public string IDCard { get; set; } /// ///年龄 /// [Display(Name = "年龄")] public int Age { get; set; } /// ///性别 /// [Display(Name = "性别")] public string Sex { get; set; } /// ///出生日期 /// [Display(Name = "出生日期")] public DateTime? Birthday { get; set; } /// /// 心率设备正面编号 /// [Display(Name = "心率设备正面编号")] public string HeartRateFrontNo { get; set; } /// /// 心率设备ID /// [Display(Name = "心率设备ID")] public string HeartRateId { get; set; } /// /// 中长跑芯片编号 /// [Display(Name = "中长跑芯片编号")] public string RunChipNo { get; set; } /// /// 跳绳编号 /// [Display(Name = "跳绳编号")] public string RopeSkipQRCode { get; set; } } }