using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace YD_WeChatApplet.Commons.Dto.Patriarch { /// /// 训练记录 /// public class ExerciseRecordDto { public int Id { get; set; } /// /// 作业类型名称 /// public string WorkTypeName { get; set; } /// /// 模式类型名称 /// public string WorkModeTypeName { get; set; } /// /// 作业时长 /// public int Duration { get; set; } /// /// 组数量 /// public int GroupNumber { get; set; } /// /// 作业数量 /// public int Amount { get; set; } /// /// 卡路里 /// public float? Calorie { get; set; } /// ///开始时间 /// public DateTime? StartTime { get; set; } /// ///结束时间 /// public DateTime? EndTime { get; set; } } }