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
{
///
/// 学生成绩列表
///
public class StudentsTestDataModel
{
///
/// Id
///
[Display(Name = "IgnoreColumnAttribute")]
public int Id { get; set; }
///
///老师Id
///
[Display(Name = "IgnoreColumnAttribute")]
public int TeacherId { get; set; }
///
///年级Id
///
[Display(Name = "IgnoreColumnAttribute")]
public int GradeId { get; set; }
///
/// 测试类别Id
///
[Display(Name = "IgnoreColumnAttribute")]
public int CategoryId { get; set; }
///
///年级名称
///
[Display(Name = "年级名称")]
public string GradeName { get; set; }
///
///班级Id
///
[Display(Name = "IgnoreColumnAttribute")]
public int ClassId { get; set; }
///
///班级名称
///
[Display(Name = "班级名称")]
public string ClassName { get; set; }
///
///学生学号
///
[Display(Name = "学生学号")]
public string StudentNo { get; set; }
///
///性别
///
[Display(Name = "性别")]
public string Sex { get; set; }
///
///测试类别
///
[Display(Name = "测试类别")]
public string CategoryName { get; set; }
///
///测试结果
///
[Display(Name = "测试结果")]
public float Value { get; set; }
///
///运动时长/分钟
///
[Display(Name = "运动时长/分钟")]
public int MotionDuration { get; set; }
///
///运动消耗
///
[Display(Name = "运动消耗")]
public int Consumption { get; set; }
///
///运动强度
///
[Display(Name = "运动强度")]
public int Strength { get; set; }
///
///得分
///
[Display(Name = "得分")]
public float Score { get; set; }
///
/// 等级
///
[Display(Name = "等级")]
public string Rank { get; set; }
///
/// 班级排名
///
[Display(Name = "班级排名")]
public int ClassRank { get; set; }
///
///备注
///
[Display(Name = "备注")]
public string Remarks { get; set; }
}
}