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