using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace HL_FristAidPlatform_DTO { public class CheatPainFirstAidTimeStatisticsDataDTO { /// /// 月份 /// public string MonthValue { get; set; } /// /// 最大值 /// public string MaxValue { get; set; } /// /// 最小值 /// public string MinValue { get; set; } /// /// 平均值 /// public string AvgValue { get; set; } /// /// 总数 /// public string SumCount { get; set; } } }