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.
 
 
 
 
 
 

26 lines
901 B

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace Report.Entity
{
public class ODFSummary
{
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; }
}
}