using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace VOL.Model
{
///
/// 学生各项目数据统计
///
public class StudentSingleDataStatsModel
{
///
/// 时间
///
public DateTime? CreateDate { get; set; }
///
///测试结果
///
public float Value { get; set; }
///
///得分
///
public float Score { get; set; }
///
/// 等级
///
public string Rank { get; set; }
///
///平均
///
public float Avg { get; set; }
///
///中值
///
public double Median { get; set; }
///
///最高
///
public float Max { get; set; }
///
/// 近五次趋势图
///
public VariousSportsProportion TrendChart { get; set; } = new VariousSportsProportion();
}
}