using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace VOL.Model
{
///
/// 图表数据
///
public class VariousSportsProportion
{
///
/// 横轴
///
public List AxisX { get; set; } = new List();
///
/// 纵轴
///
public List AxisY { get; set; } = new List();
}
public class ExcellentRateChart
{
///
/// 横轴
///
public List AxisX { get; set; } = new List();
///
/// 纵轴
///
public List AxisY { get; set; } = new List();
}
///
/// 分数对比[最好/最近]
///
public class ResultContrastChart
{
///
/// 横轴
///
public List AxisX { get; set; } = new List();
///
/// 纵轴
///
public List AxisY { get; set; } = new List();
}
///
/// 性别与总体数据
///
public class SexAndOverall
{
///
/// 男生数据
///
public float MaleValue { get; set; }
///
/// 女生数据
///
public float FemaleValue { get; set; }
///
/// 总体数据
///
public float OverallValue { get; set; }
}
///
/// 分数对比[最好/最近]
///
public class ResultContrast
{
///
/// 最高
///
public float MaxValue { get; set; }
///
/// 最新
///
public float LastValue { get; set; }
}
///
/// 体质健康
///
public class PhysicalHealth
{
///
/// 男生数据
///
public VariousSportsProportion MaleData { get; set; } = new VariousSportsProportion();
///
/// 女生数据
///
public VariousSportsProportion FemaleData { get; set; } = new VariousSportsProportion();
}
}