using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace YD_AllHeartRates.Commons.Dto.LargeScreen { /// /// 心率数据 /// public class HeartRateDataDto { /// /// 基本热身 /// public int WarmUp { get; set; } /// /// 低等强度 /// public int Low { get; set; } /// /// 中等强度 /// public int Medium { get; set; } /// /// 高等强度 /// public int High { get; set; } /// /// 安全预警 /// public int Warning { get; set; } /// /// 学生集合 /// public List StudentList { get; set; } = new List(); } public class StudentDto { /// /// 性别 /// public int Sex { get; set; } /// /// 学生学号 /// public string StudentNo { get; set; } /// /// 学生姓名 /// public string StudentName { get; set; } /// /// 头像 /// public string Photo { get; set; } /// ///心率数据 /// public int HeartRate { get; set; } /// ///跳绳数据 /// public int JumpingRope { get; set; } /// /// 运动强度 /// public int Strength { get; set; } } }