using System; using System.Xml.Serialization; namespace Aop.Api.Domain { /// /// DeliverInfo Data Structure. /// [Serializable] public class DeliverInfo : AopObject { /// /// 保单寄送地址的住址 /// [XmlElement("recipients_address")] public string RecipientsAddress { get; set; } /// /// 配送地址行政区划代码 /// [XmlElement("recipients_address_code")] public string RecipientsAddressCode { get; set; } /// /// 收件人姓名 /// [XmlElement("recipients_name")] public string RecipientsName { get; set; } /// /// 收件人电话 /// [XmlElement("recipients_phone")] public string RecipientsPhone { get; set; } } }