using System; using System.Xml.Serialization; namespace Aop.Api.Domain { /// /// AssetDeliveryAddress Data Structure. /// [Serializable] public class AssetDeliveryAddress : AopObject { /// /// 详细地址 /// [XmlElement("address")] public string Address { get; set; } /// /// 市 /// [XmlElement("city")] public string City { get; set; } /// /// 收件人 /// [XmlElement("contact_name")] public string ContactName { get; set; } /// /// 联系人电话 /// [XmlElement("contact_phone")] public string ContactPhone { get; set; } /// /// 区信息 /// [XmlElement("district")] public string District { get; set; } /// /// 省 /// [XmlElement("province")] public string Province { get; set; } /// /// 仓库id /// [XmlElement("warehouse_id")] public string WarehouseId { get; set; } /// /// 供应商的仓库名称 /// [XmlElement("warehouse_name")] public string WarehouseName { get; set; } /// /// 邮编 /// [XmlElement("zip_code")] public string ZipCode { get; set; } } }