using System; using System.Xml.Serialization; namespace Aop.Api.Domain { /// /// MedicalHospitalInfo Data Structure. /// [Serializable] public class MedicalHospitalInfo : AopObject { /// /// 医院唯一标识,编码开发者生成并保证唯一 /// [XmlElement("code")] public string Code { get; set; } /// /// 医院名称 /// [XmlElement("name")] public string Name { get; set; } /// /// 医院联系电话 /// [XmlElement("phone")] public string Phone { get; set; } } }