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.

49 lines
1.4 KiB

2 years ago
1 year ago
2 years ago
1 year ago
2 years ago
1 year ago
2 years ago
  1. using System;
  2. using System.Collections.Generic;
  3. using System.Linq;
  4. using System.Text;
  5. using System.Threading.Tasks;
  6. using System.Xml.Serialization;
  7. namespace Shentun.Peis.PlugIns.Extensions.ChargeRequests.Hzcy
  8. {
  9. [XmlRoot(ElementName = "BSXml")]
  10. public class HisPatientQueryOut : HisOutBase
  11. {
  12. [XmlElement(ElementName = "Patient")]
  13. public HisPatientQueryPatientOut Patient { get; set; } = new HisPatientQueryPatientOut();
  14. }
  15. public class HisPatientQueryPatientOut
  16. {
  17. [XmlElement(ElementName = "PatientId")]
  18. public string? PatientId { get; set; }
  19. [XmlElement(ElementName = "IdCard")]
  20. public string? IdCard { get; set; }
  21. [XmlElement(ElementName = "IdCardCode")]
  22. public string? IdCardCode { get; set; }
  23. [XmlElement(ElementName = "Name")]
  24. public string? Name { get; set; }
  25. [XmlElement(ElementName = "Sex")]
  26. public string? Sex { get; set; }
  27. [XmlElement(ElementName = "BirthDate")]
  28. public string? BirthDate { get; set; }
  29. [XmlElement(ElementName = "PatientPhone")]
  30. public string? PatientPhone { get; set; }
  31. [XmlElement(ElementName = "EthnicGroupCode")]
  32. public string? EthnicGroupCode { get; set; }
  33. [XmlElement(ElementName = "WorkUnit")]
  34. public string? WorkUnit { get; set; }
  35. [XmlElement(ElementName = "Address")]
  36. public string? Address { get; set; }
  37. }
  38. }