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.School.Response { /// /// 学生体测成绩实体 /// public class SportsTestValueModel { /// /// Id /// public int Id { get; set; } /// ///学校编号 /// public string SchoolCode { get; set; } /// ///老师Id /// public int TeacherId { get; set; } /// /// 教师名 /// public string TeacherName { 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 SexType Sex { get; set; } /// ///类别枚举值 /// public int CategoryValue { get; set; } /// ///类别枚举名称 /// public string CategoryEnum { get; set; } /// ///测试结果 /// public float Value { get; set; } /// ///运动时长/分钟 /// public int MotionDuration { get; set; } /// ///运动消耗 /// public int Consumption { get; set; } /// ///运动强度 /// public int Strength { get; set; } /// ///得分 /// public float Score { get; set; } /// ///附加分 /// public float AdditionalScore { get; set; } /// /// 训练成绩等级[1:优秀,2:良好,3:及格,4:不及格] /// 心率项目[1:达标,2:未达标] /// public AchievementRank RankEnum { get; set; } /// /// 等级 /// public string Rank { get; set; } /// /// 班级排名 /// public int ClassRank { get; set; } /// ///数据来源 /// public DataSource DataSource { get; set; } /// /// 错误成绩 /// public float? WrongResults { get; set; } /// ///测试时间 /// public DateTime ScoreTime { get; set; } /// ///备注 /// public string Remarks { get; set; } /// /// 当前年份 /// public int Year { get; set; } /// /// 学期 /// public SemesterEnum Semester { get; set; } /// /// 课堂记录Id /// public int ClassRoomRecordId { get; set; } /// /// 模式类型 /// public Ai_ModeEnum ModeType { get; set; } /// /// 模式名称 /// public string ModelName { get; set; } } }