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

1 month ago
  1. using System;
  2. using System.Collections.Generic;
  3. using System.Linq;
  4. using System.Text;
  5. using System.Threading.Tasks;
  6. namespace Report.Entity
  7. {
  8. public class PatientOccupationalDisease
  9. {
  10. public string ocCheckTypeId { get; set; }
  11. public string ocCheckTypeName { get; set; }
  12. public string jobType { get; set; }
  13. public string totalWorkTime { get; set; }
  14. public string poisonWorkTime { get; set; }
  15. public string riskFactors { get; set; }
  16. public string familyGeneticHistory { get; set; }
  17. public string lastMenstrualPeriodDate { get; set; }
  18. public string firstMenstruation { get; set; }
  19. public string menstruationTimeLength { get; set; }
  20. public string OccupationalDiseaseNumber { get; set; }
  21. public string menstruationCycle { get; set; }
  22. public string menstruationEndAge { get; set; }
  23. public string menstruationFlag { get; set; }
  24. public string childrenNum { get; set; }
  25. public string abortionTimes { get; set; }
  26. public string prematureBirthTimes { get; set; }
  27. public string stillbirthTimes { get; set; }
  28. public string abnormalTimes { get; set; }
  29. public string smokeFlag { get; set; }
  30. public string smokeNum { get; set; }
  31. public string smokeNumMax { get; set; }
  32. public string smokeYears { get; set; }
  33. public string drinkFlag { get; set; }
  34. public string drinkNum { get; set; }
  35. public string drinkNumMax { get; set; }
  36. public string drinkYears { get; set; }
  37. public string other { get; set; }
  38. public string occupationalAbnormal { get; set; }
  39. public string noOccupationalAbnormal { get; set; }
  40. public string occupationalAbSuggestion { get; set; }
  41. public string noOccupAbSuggestion { get; set; }
  42. public string handleSuggestion { get; set; }
  43. }
  44. }