using System; using System.Xml.Serialization; namespace Aop.Api.Domain { /// /// MedicalHospitalDeptInfo Data Structure. /// [Serializable] public class MedicalHospitalDeptInfo : AopObject { /// /// 科室唯一标识,编码开发者生成并保证唯一 /// [XmlElement("code")] public string Code { get; set; } /// /// 科室位置 /// [XmlElement("location")] public string Location { get; set; } /// /// 科室名称 /// [XmlElement("name")] public string Name { get; set; } /// /// 父科室名称 如果是顶层科室可空 目的定位科室级联关系 /// [XmlElement("parent_name")] public string ParentName { get; set; } /// /// 父科室唯一标识 如果是顶层科室可空 目的定位科室级联关系 /// [XmlElement("partner_code")] public string PartnerCode { get; set; } } }