using Microsoft.EntityFrameworkCore; using System; using System.Collections.Generic; using System.ComponentModel.DataAnnotations; using System.ComponentModel.DataAnnotations.Schema; using System.Linq; using System.Text; using System.Threading.Tasks; using VOL.Entity.Enum; namespace VOL.Model { /// /// 学生测试数据导入 /// public class ImportStudentsTestDataParam { /// ///学号 /// [Display(Name = "学号")] public string StudentNo { get; set; } ///// /////年级Id ///// //[Display(Name = "年级Id")] //public int GradeId { get; set; } ///// /////年级 ///// //[Display(Name = "年级")] //public string GradeName { get; set; } ///// /////班级Id ///// //[Display(Name = "班级Id")] //public int ClassId { get; set; } ///// /////班级 ///// //[Display(Name = "班级")] //public string ClassName { get; set; } ///// /////性别 ///// //[Display(Name = "性别")] //public string SexName { get; set; } ///// /////测试类别 ///// //[Display(Name = "测试类别")] //public string CategoryEnum { get; set; } /// ///测试结果 /// [Display(Name = "测试结果")] public float Value { get; set; } /// ///运动时长/分钟 /// [Display(Name = "运动时长")] public int MotionDuration { get; set; } /// ///运动消耗 /// [Display(Name = "运动消耗")] public int Consumption { get; set; } /// /// 体重指数(BMI) /// [Display(Name = "BMI")] public float BMIValue { get; set; } /// /// 身高[单位:厘米] /// [Display(Name = "身高")] public float Height { get; set; } /// /// 体重[单位:千克] /// [Display(Name = "体重")] public float Weight { get; set; } /// /// 肺活量 /// [Display(Name = "肺活量")] public float VitalCapacityValue { get; set; } /// /// 50米跑 /// [Display(Name = "50米跑")] public float MeterRun_50Value { get; set; } /// /// 坐位体前屈 /// [Display(Name = "坐位体前屈")] public float Sit_And_ReachValue { get; set; } /// /// 1分钟跳绳 /// [Display(Name = "一分钟跳绳")] public int OneMinuteJumpRopeValue { get; set; } /// /// 1分钟仰卧起坐(女) /// [Display(Name = "一分钟仰卧起坐")] public int One_Minute_Sit_UpValue { get; set; } /// /// 50米*8往返跑 /// [Display(Name = "50米x8往返跑")] public float ShuttleRun_50x8Value { get; set; } /// /// 立定跳远 /// [Display(Name = "立定跳远")] public float StandingLongJumpValue { get; set; } /// /// 800米跑(女) /// [Display(Name = "800米跑")] public float MeterRun_800Value { get; set; } /// /// 1000米跑(男) /// [Display(Name = "1000米跑")] public float MeterRun_1000Value { get; set; } /// /// 引体向上(男) /// [Display(Name = "引体向上")] public int Pull_UpValue { get; set; } } }