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.

36 lines
1.1 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 TestRequest
  9. {
  10. public string patientName { get; set; }
  11. public string sexName { get; set; }
  12. public string age { get; set; }
  13. public string sampleTypeName { get; set; }
  14. public string sampleContainerName { get; set; }
  15. public int containerColor { get; set; }
  16. public string sampleContainerRemark { get; set; }
  17. public string lisRequestNo { get; set; }
  18. public byte[] barcodeImg { get; set; }
  19. public string patientRegisterNo { get; set; }
  20. public string asbitemNames { get; set; }
  21. public string customerOrgName { get; set; }
  22. public string departmentName { get; set; }
  23. public string sampleGroupName { get; set; }
  24. public string mobileTelephone { get; set; }
  25. public string samplePrintCount { get; set; }
  26. }
  27. public class Dto0002
  28. {
  29. public object lisRequest { get; set; }
  30. }
  31. }