27 lines
601 B
C#
27 lines
601 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace HL_FristAidPlatform_DTO
|
|
{
|
|
public class OcclusiveCerebralInfarctionModelDTO
|
|
{
|
|
/// <summary>
|
|
/// 前循环大血管闭塞性脑梗死
|
|
/// </summary>
|
|
///
|
|
|
|
//总数
|
|
public int Count { get; set; }
|
|
|
|
//治疗数
|
|
public int TreatmentNumber { get; set; }
|
|
//未治疗数
|
|
public int NotTreatmentNumber { get; set; }
|
|
//治疗率
|
|
public string TreatmentRate { get; set; }
|
|
}
|
|
}
|