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.

56 lines
1.5 KiB

2 years ago
1 year ago
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. public class HisPatientQueryInput : HisInputBase
  10. {
  11. public HisPatientQueryDataInput Data { get; set; } = new HisPatientQueryDataInput();
  12. }
  13. [XmlRoot(ElementName = "BSXml")]
  14. public class HisPatientQueryDataInput : HisDataInputBase
  15. {
  16. [XmlElement(ElementName = "Patient")]
  17. public HisPatientQueryPatientInput Patient { get; set; } = new HisPatientQueryPatientInput();
  18. }
  19. [XmlRoot(ElementName = "Patient")]
  20. public class HisPatientQueryPatientInput
  21. {
  22. [XmlElement(ElementName = "IdCard")]
  23. public string? IdCard { get; set; }
  24. [XmlElement(ElementName = "IdCardCode")]
  25. public string? IdCardCode { get; set; }
  26. [XmlElement(ElementName = "Name")]
  27. public string? Name { get; set; }
  28. [XmlElement(ElementName = "Sex")]
  29. public string? Sex { get; set; }
  30. [XmlElement(ElementName = "BirthDate")]
  31. public string? BirthDate { get; set; }
  32. [XmlElement(ElementName = "PatientPhone")]
  33. public string? PatientPhone { get; set; }
  34. [XmlElement(ElementName = "EthnicGroupCode")]
  35. public string? EthnicGroupCode { get; set; }
  36. [XmlElement(ElementName = "WorkUnit")]
  37. public string? WorkUnit { get; set; }
  38. [XmlElement(ElementName = "Address")]
  39. public string? Address { get; set; }
  40. }
  41. }