using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace HL_FristAidPlatform_DTO { public class CaseDataDTO { /// /// 今日新增总数 /// public int ToDayCount { get; set; } /// /// 本周总数 /// public int WeekCount { get; set; } /// /// 本月总数 /// public int MonthCount { get; set; } /// /// 本季总数 /// public int QuarterCount { get; set; } /// /// 本年总数 /// public int YearCount { get; set; } /// /// 累计总数 /// public int TotalCount { get; set; } } }