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{ public class HisPatientQueryInput: HisInputBase { public HisPatientQueryDataInput Data { get; set; } = new HisPatientQueryDataInput(); }
[XmlRoot(ElementName = "BSXml")] public class HisPatientQueryDataInput : HisDataInputBase { [XmlElement(ElementName = "Patient")] public HisPatientQueryPatientInput Patient { get; set; } = new HisPatientQueryPatientInput(); }
[XmlRoot(ElementName = "Patient")] public class HisPatientQueryPatientInput { [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; } }
}
|