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

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 ODFSummary
  9. {
  10. public string customerOrgName { get; set; }
  11. public string certificateNo { get; set; }
  12. public string medicalTypeName { get; set; }
  13. public string medicalStartDate { get; set; }
  14. public string recordNumber { get; set; }
  15. public string medicalCenterName { get; set; }
  16. public string medicalCenterAddress { get; set; }
  17. public string reportDate { get; set; }
  18. public string medicalSumCount { get; set; }
  19. public string whenLeavingWorkCount { get; set; }
  20. public string onDutyCount { get; set; }
  21. public string poisonNames { get; set; }
  22. public string conclusions { get; set; }
  23. public string jobTypes { get; set; }
  24. }
  25. }