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 HeartRateOnlineCount { get; set; } /// /// 离线心率设备数量 /// //public int HeartRateOfflineCount { get; set; } /// /// 在线跳绳设备数量 /// public int JumpingRopeOnLineCount { get; set; } /// /// 离线跳绳设备数量 /// //public int JumpingRopeOfflineCount { get; set; } /// /// 基本热身 /// 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; } /// ///心率设备电量 /// public int HeartRateQuantityOfElectricity { get; set; } /// ///跳绳设备电量 /// public int JumpingRopeQuantityOfElectricity { get; set; } } }