You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
82 lines
2.3 KiB
82 lines
2.3 KiB
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<GetCompanyOccupationalDiseaseSummaryReportConclusionDetailDto> conclusionDetails { get; set; }
|
|
|
|
public List<GetCompanyOccupationalDiseaseSummaryReportAsbitemAbnormalDto> asbitemAbnormals { get; set; }
|
|
}
|
|
|
|
public class GetCompanyOccupationalDiseaseSummaryReportAsbitemAbnormalDto
|
|
{
|
|
/// <summary>
|
|
/// 异常项目名称
|
|
/// </summary>
|
|
public string abnormalAsbitemName { get; set; }
|
|
|
|
/// <summary>
|
|
/// 异常人数
|
|
/// </summary>
|
|
public int abnormalCount { get; set; }
|
|
|
|
/// <summary>
|
|
/// 异常比例
|
|
/// </summary>
|
|
public decimal abnormalRatio { get; set; }
|
|
|
|
/// <summary>
|
|
/// 排序值
|
|
/// </summary>
|
|
public int displayOrder { get; set;}
|
|
}
|
|
|
|
|
|
public class GetCompanyOccupationalDiseaseSummaryReportConclusionDetailDto
|
|
{
|
|
/// <summary>
|
|
/// 异常项目名称
|
|
/// </summary>
|
|
public string conclusionName { get; set; }
|
|
|
|
/// <summary>
|
|
/// 异常人数
|
|
/// </summary>
|
|
public int conclusionCount { get; set; }
|
|
|
|
/// <summary>
|
|
/// 异常比例
|
|
/// </summary>
|
|
public decimal conclusionRatio { get; set; }
|
|
|
|
|
|
/// <summary>
|
|
/// 排序值
|
|
/// </summary>
|
|
public int displayOrder { get; set; }
|
|
}
|
|
|
|
public class OccuptionDiseaseFinales
|
|
{
|
|
public List<Dto0009> OccFinal { get; set; }
|
|
}
|
|
}
|