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.

47 lines
1.1 KiB

2 years ago
  1. using System;
  2. using System.Collections.Generic;
  3. using System.ComponentModel.DataAnnotations.Schema;
  4. using System.ComponentModel.DataAnnotations;
  5. using System.Text;
  6. namespace Shentun.Peis.OccupationalDiseases
  7. {
  8. public class PatientOccupationalHistoryDto : AuditedEntityDtoName
  9. {
  10. /// <summary>
  11. /// 单位
  12. /// </summary>
  13. public string Org { get; set; }
  14. /// <summary>
  15. /// 开始日期
  16. /// </summary>
  17. public DateTime? BeginDate { get; set; }
  18. /// <summary>
  19. /// 结束日期
  20. /// </summary>
  21. [Column("end_date")]
  22. public DateTime? EndDate { get; set; }
  23. /// <summary>
  24. /// 车间
  25. /// </summary>
  26. public string WorkShop { get; set; }
  27. /// <summary>
  28. /// 工种
  29. /// </summary>
  30. public string WorkType { get; set; }
  31. /// <summary>
  32. /// 毒害因素
  33. /// </summary>
  34. public string Poison { get; set; }
  35. /// <summary>
  36. /// 防护措施
  37. /// </summary>
  38. public string ProtectiveMeasures { get; set; }
  39. }
  40. }