using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace HL_FristAidPlatform_DTO
{
public class HypertensionHandleDTO
{
///
/// 出院时处理率
///
public string SumHandleRateOut { get; set; }
///
/// 总数
///
public string SumCount { get; set; }
///
/// 筛选后的总数
///
public string ScreenCount { get; set; }
///
/// 出院时每月数据
/// 月份
/// 处理率
///
public List OutList;
///
/// 患者列表
///
public List PatientInList;
///
/// 月份
/// 处理率
///
public List InList;
}
}