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 TrainingDataModel
{
///
/// 训练资料ID
///
public int Id { get; set; }
///
///数据来源
///
public DataSource DataSource { get; set; }
///
///学校Code
///
public string? SchoolCode { get; set; }
///
/// 年级编号
///
public int GradeId { get; set; }
///
///班级Id
///
public int ClassId { get; set; }
///
///老师Id
///
public int TeacherId { get; set; }
///
/// 项目类型
///
public int ItemType { get; set; }
///
/// 开始时间
///
public string? InsertTime { get; set; }
///
/// 结束时间
///
public string? EndTime { get; set; }
///
/// 参与人数
///
public int TotalNumber { get; set; }
///
/// 总轮次
///
public int TtotalGroup { get; set; }
///
/// 训练类型
///
public int TrainType { get; set; }
///
/// 模式类型
///
public int ModeType { get; set; }
///
/// 模式名称
///
public string? ModelName { get; set; }
///
/// 限时
///
public int LimitTime { get; set; }
///
/// 限数
///
public int LimitNumber { get; set; }
///
/// 训练成绩[1:优秀,2:良好,3:及格,4:不及格]
/// 心率项目[1:达标,2:未达标]
///
public int ClassScore { get; set; }
///
/// 男孩优秀的评分标准
///
public string? BoyLevelHigh { get; set; }
///
/// 男孩良好的评分标准
///
public string? BoyLevelMiddle { get; set; }
///
/// 男孩及格的评分标准
///
public string? BoyLevelLow { get; set; }
///
/// 女孩优秀的评分标准
///
public string? GirlLevelHigh { get; set; }
///
/// 女孩良好的评分标准
///
public string? GirlLevelMiddle { get; set; }
///
/// 女孩及格的评分标准
///
public string? GirlLevelLow { get; set; }
}
}