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; namespace VOL.Model { /// /// 导入视力记录模板 /// public class ImportVisionDataParam { /// /// 年级 /// [Display(Name = "年级")] public string GradeName { get; set; } /// /// 班级 /// [Display(Name = "班级")] public string ClassName { get; set; } /// ///学生学号 /// [Display(Name = "学生学号")] public string StudentNo { get; set; } /// /// 学生姓名 /// [Display(Name = "学生姓名")] public string StudentName { get; set; } /// /// 左眼 /// [Display(Name = "左眼")] public float VisionLeft { get; set; } /// /// 右眼 /// [Display(Name = "右眼")] public float VisionReight { get; set; } } }