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.

28 lines
762 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. public class ExamRequest
  8. {
  9. public string patientName { get; set; }
  10. public string sexName { get; set; }
  11. public string age { get; set; }
  12. public string checkRequestNo { get; set; }
  13. public byte[] barcodeImg { get; set; }
  14. public string patientRegisterNo { get; set; }
  15. public string asbitemName { get; set; }
  16. public string customerOrgName { get; set; }
  17. public string departmentName { get; set; }
  18. public string mobileTelephone { get; set; }
  19. }
  20. public class Dto0004
  21. {
  22. public object lisRequest { get; set; }
  23. }
  24. }