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.
|
|
using System;using System.Collections.Generic;using System.Linq;using System.Text;using System.Threading.Tasks;using System.Xml.Serialization;
namespace Shentun.Peis.PlugIns.Gem{ [XmlRoot(ElementName = "BSXml")] public class HisPatientQueryOut:HisOutBase { [XmlElement(ElementName = "Patient")] public HisPatientQueryPatientOut Patient { get; set; } = new HisPatientQueryPatientOut(); }
public class HisPatientQueryPatientOut { [XmlElement(ElementName = "PatientId")] public string? PatientId { get; set; }
[XmlElement(ElementName = "IdCard")] public string? IdCard { get; set; }
[XmlElement(ElementName = "IdCardCode")] public string? IdCardCode { get; set; }
[XmlElement(ElementName = "Name")] public string? Name { get; set; }
[XmlElement(ElementName = "Sex")] public string? Sex { get; set; }
[XmlElement(ElementName = "BirthDate")] public string? BirthDate { get; set; }
[XmlElement(ElementName = "PatientPhone")] public string? PatientPhone { get; set; }
[XmlElement(ElementName = "EthnicGroupCode")] public string? EthnicGroupCode { get; set; }
[XmlElement(ElementName = "WorkUnit")] public string? WorkUnit { get; set; }
[XmlElement(ElementName = "Address")] public string? Address { get; set; } }}
|