using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace Report.Entity { public class Dto0009 { public string customerOrgName { get; set; } public string certificateNo { get; set; } public string medicalTypeName { get; set; } public string medicalStartDate { get; set; } public string recordNumber { get; set; } public string medicalCenterName { get; set; } public string medicalCenterAddress { get; set; } public string reportDate { get; set; } public string medicalSumCount { get; set; } public string whenLeavingWorkCount { get; set; } public string onDutyCount { get; set; } public string poisonNames { get; set; } public string conclusions { get; set; } public string jobTypes { get; set; } public List conclusionDetails { get; set; } public List asbitemAbnormals { get; set; } } public class GetCompanyOccupationalDiseaseSummaryReportAsbitemAbnormalDto { /// /// 异常项目名称 /// public string abnormalAsbitemName { get; set; } /// /// 异常人数 /// public int abnormalCount { get; set; } /// /// 异常比例 /// public decimal abnormalRatio { get; set; } /// /// 排序值 /// public int displayOrder { get; set;} } public class GetCompanyOccupationalDiseaseSummaryReportConclusionDetailDto { /// /// 异常项目名称 /// public string conclusionName { get; set; } /// /// 异常人数 /// public int conclusionCount { get; set; } /// /// 异常比例 /// public decimal conclusionRatio { get; set; } /// /// 排序值 /// public int displayOrder { get; set; } } public class OccuptionDiseaseFinales { public List OccFinal { get; set; } } }