89 lines
2.1 KiB
C#
89 lines
2.1 KiB
C#
![]() |
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
|
|||
|
{
|
|||
|
/// <summary>
|
|||
|
/// 导入学生
|
|||
|
/// </summary>
|
|||
|
public class ImportStudentParam
|
|||
|
{
|
|||
|
/// <summary>
|
|||
|
///学号
|
|||
|
/// </summary>
|
|||
|
[Display(Name = "学号")]
|
|||
|
public string StudentNo { get; set; }
|
|||
|
/// <summary>
|
|||
|
///年级
|
|||
|
/// </summary>
|
|||
|
[Display(Name = "年级")]
|
|||
|
public string GradeName { get; set; }
|
|||
|
|
|||
|
/// <summary>
|
|||
|
///班级
|
|||
|
/// </summary>
|
|||
|
[Display(Name = "班级")]
|
|||
|
public string ClassName { get; set; }
|
|||
|
|
|||
|
/// <summary>
|
|||
|
///姓名
|
|||
|
/// </summary>
|
|||
|
[Display(Name = "姓名")]
|
|||
|
public string StudentName { get; set; }
|
|||
|
|
|||
|
/// <summary>
|
|||
|
///身份证
|
|||
|
/// </summary>
|
|||
|
[Display(Name = "身份证")]
|
|||
|
public string IDCard { get; set; }
|
|||
|
|
|||
|
/// <summary>
|
|||
|
///年龄
|
|||
|
/// </summary>
|
|||
|
[Display(Name = "年龄")]
|
|||
|
public int Age { get; set; }
|
|||
|
|
|||
|
/// <summary>
|
|||
|
///性别
|
|||
|
/// </summary>
|
|||
|
[Display(Name = "性别")]
|
|||
|
public string Sex { get; set; }
|
|||
|
|
|||
|
/// <summary>
|
|||
|
///出生日期
|
|||
|
/// </summary>
|
|||
|
[Display(Name = "出生日期")]
|
|||
|
public DateTime? Birthday { get; set; }
|
|||
|
|
|||
|
/// <summary>
|
|||
|
/// 心率设备正面编号
|
|||
|
/// </summary>
|
|||
|
[Display(Name = "心率设备正面编号")]
|
|||
|
public string HeartRateFrontNo { get; set; }
|
|||
|
|
|||
|
/// <summary>
|
|||
|
/// 心率设备ID
|
|||
|
/// </summary>
|
|||
|
[Display(Name = "心率设备ID")]
|
|||
|
|
|||
|
public string HeartRateId { get; set; }
|
|||
|
|
|||
|
/// <summary>
|
|||
|
/// 中长跑芯片编号
|
|||
|
/// </summary>
|
|||
|
[Display(Name = "中长跑芯片编号")]
|
|||
|
public string RunChipNo { get; set; }
|
|||
|
|
|||
|
/// <summary>
|
|||
|
/// 跳绳编号
|
|||
|
/// </summary>
|
|||
|
[Display(Name = "跳绳编号")]
|
|||
|
public string RopeSkipQRCode { get; set; }
|
|||
|
}
|
|||
|
}
|