using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace VOL.Model.Norm.Response { /// /// 体测情况统计 /// public class SportsTestStatModel { /// /// 类别Id /// //public int CategoryId { get; set; } /// /// 类别名称 /// public string CategoryName { get; set; } /// /// 前三名学生 /// public List TopThreeStudents { get; set; } = new List(); } /// /// 前三名学生信息 /// public class TopThreeStudent { /// /// 学生姓名 /// public string Name { get; set; } /// /// 学生成绩 /// public float Score { get; set; } /// /// 排名 /// public int Ranking { get; set; } /// /// 学生照片 /// public string Photo { get; set; } } /// /// 学生成绩范围 /// public class ScoreRange { /// /// 学生数量 /// public int StudentCount { get; set; } /// /// 百分比 /// public float Proportion { get; set; } } /// /// 体测情况 /// public class TestSituations { /// /// 优良率 /// public float ExcellentRate { get; set; } /// /// 优良人数 /// public int ExcellentCount { get; set; } /// /// 体测合格率 /// public List TestSituationsData { get; set; } = new List(); } /// /// 赛事活动情况 /// public class ActivitiesSituation { /// /// 赛事总场数 /// public int ActivitiesTotalCount { get; set; } /// /// 参与率 /// public float ParticipationRate { get; set; } /// /// 已完成 /// public int CompletedCount { get; set; } /// /// 进行中 /// public int AfootCount { get; set; } /// /// 未开始 /// public int NotStartedCount { get; set; } } /// /// 活动通知 /// public class ActivitiesNotice { /// /// 通知 /// public string ActivitiesName { get; set; } /// /// 参赛对象 /// public string Participants { get; set; } /// /// 项目名称 /// public string CategoryName { get; set; } /// /// 活动时间 /// public string ActivityTime { get; set; } } }