using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace HL_FristAidPlatform_DTO
{
public class TraumaStatisticsModelDTO
{
///
/// 个数
///
public string SumCount { get; set; }
///
/// 病死率
///
public string SumDeathRate { get; set; }
///
/// 月份
///
public string Month { get; set; }
///
/// 个数
///
public string Count { get; set; }
///
/// 病死率
///
public string DeathRate { get; set; }
}
}