55 lines
1.7 KiB
C#
55 lines
1.7 KiB
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace VOL.Model.Norm.Response
|
|
{
|
|
/// <summary>
|
|
/// 大屏数据统计
|
|
/// </summary>
|
|
public class LargeScreenDataStatModel
|
|
{
|
|
/// <summary>
|
|
/// 学校信息
|
|
/// </summary>
|
|
public SchoolInfoModel SchoolInfo { get; set; } = new SchoolInfoModel();
|
|
|
|
/// <summary>
|
|
/// 体测情况(体质健康监控)
|
|
/// </summary>
|
|
public TestSituations TestSituations { get; set; } = new TestSituations();
|
|
|
|
/// <summary>
|
|
/// 体质监测排行榜
|
|
/// </summary>
|
|
public List<PhysicalMonitoring> PhysicalMonitoringRanking { get; set; } = new List<PhysicalMonitoring>();
|
|
|
|
/// <summary>
|
|
/// 赛事活动情况
|
|
/// </summary>
|
|
public ActivitiesSituation ActivitiesSituation { get; set; } = new ActivitiesSituation();
|
|
|
|
/// <summary>
|
|
/// 肥胖情况
|
|
/// </summary>
|
|
public List<SportsProportionData> ObesitySituation { get; set; } = new List<SportsProportionData>();
|
|
|
|
/// <summary>
|
|
/// 视力情况
|
|
/// </summary>
|
|
public List<SportsProportionData> DicVisionSituation { get; set; } = new List<SportsProportionData>();
|
|
|
|
/// <summary>
|
|
/// 年级体测项目成绩监控
|
|
/// </summary>
|
|
public List<GradeSportsTestTranscript> GradeSportsTestTranscript { get; set; } = new List<GradeSportsTestTranscript>();
|
|
|
|
/// <summary>
|
|
/// 班级平均运动强度监控
|
|
/// </summary>
|
|
//public List<SportsProportionData> AverageClassExerciseIntensity { get; set; } = new List<SportsProportionData>();
|
|
}
|
|
}
|