using System; using System.Xml.Serialization; namespace Aop.Api.Domain { /// /// DeliveryInfo Data Structure. /// [Serializable] public class DeliveryInfo : AopObject { /// /// 市区编码,国标码 /// [XmlElement("city_code")] public string CityCode { get; set; } /// /// 收件人 /// [XmlElement("consignee")] public string Consignee { get; set; } /// /// 收件人联系方式 /// [XmlElement("contact_phone")] public string ContactPhone { get; set; } /// /// 详细地区 /// [XmlElement("detail_address")] public string DetailAddress { get; set; } /// /// 县区编码,国标码 /// [XmlElement("district_code")] public string DistrictCode { get; set; } /// /// 省份编码,国标码 /// [XmlElement("province_code")] public string ProvinceCode { get; set; } /// /// 邮政编码 /// [XmlElement("zip_code")] public string ZipCode { get; set; } } }