using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace HL_FristAidPlatform_DTO
{
public class ChestPainPatientNumDTO
{
///
/// 今日新增总数
///
public int ToDayCount { get; set; } = 0;
///
/// 本周总数
///
public int WeekCount { get; set; } = 0;
///
/// 本月总数
///
public int MonthCount { get; set; } = 0;
///
/// 近6个月总数
///
public int SixMonthCount { get; set; } = 0;
///
/// 累计总数
///
public int TotalCount { get; set; } = 0;
}
}