using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace HL_FristAidPlatform_DTO { public class EmbolismIncidenceRateDTO { /// /// 总数 /// public string SumCount { get; set; } /// /// 筛选人数 /// public string ScreenCount { get; set; } /// /// 比例 /// public string EmbolismIncidenceRate { get; set; } } }