using System; using System.Xml.Serialization; namespace Aop.Api.Domain { /// /// SenderInfoVO Data Structure. /// [Serializable] public class SenderInfoVO : AopObject { /// /// 区域 /// [XmlElement("area")] public string Area { get; set; } /// /// 城市编码 /// [XmlElement("city")] public string City { get; set; } /// /// 详细地址 /// [XmlElement("detail_address")] public string DetailAddress { get; set; } /// /// 发货人电话 /// [XmlElement("mobile")] public string Mobile { get; set; } /// /// 发货人 /// [XmlElement("name")] public string Name { get; set; } /// /// 省份编码 /// [XmlElement("province")] public string Province { get; set; } } }