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.
45 lines
1.9 KiB
45 lines
1.9 KiB
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace Report.Entity
|
|
{
|
|
public class PatientOccupationalDisease
|
|
{
|
|
public string ocCheckTypeId { get; set; }
|
|
public string ocCheckTypeName { get; set; }
|
|
public string jobType { get; set; }
|
|
public string totalWorkTime { get; set; }
|
|
public string poisonWorkTime { get; set; }
|
|
public string riskFactors { get; set; }
|
|
public string familyGeneticHistory { get; set; }
|
|
public string lastMenstrualPeriodDate { get; set; }
|
|
public string firstMenstruation { get; set; }
|
|
public string menstruationTimeLength { get; set; }
|
|
public string OccupationalDiseaseNumber { get; set; }
|
|
public string menstruationCycle { get; set; }
|
|
public string menstruationEndAge { get; set; }
|
|
public string menstruationFlag { get; set; }
|
|
public string childrenNum { get; set; }
|
|
public string abortionTimes { get; set; }
|
|
public string prematureBirthTimes { get; set; }
|
|
public string stillbirthTimes { get; set; }
|
|
public string abnormalTimes { get; set; }
|
|
public string smokeFlag { get; set; }
|
|
public string smokeNum { get; set; }
|
|
public string smokeNumMax { get; set; }
|
|
public string smokeYears { get; set; }
|
|
public string drinkFlag { get; set; }
|
|
public string drinkNum { get; set; }
|
|
public string drinkNumMax { get; set; }
|
|
public string drinkYears { get; set; }
|
|
public string other { get; set; }
|
|
public string occupationalAbnormal { get; set; }
|
|
public string noOccupationalAbnormal { get; set; }
|
|
public string occupationalAbSuggestion { get; set; }
|
|
public string noOccupAbSuggestion { get; set; }
|
|
public string handleSuggestion { get; set; }
|
|
}
|
|
}
|