using System; using System.Xml.Serialization; namespace Aop.Api.Domain { /// /// LogisticsInfo Data Structure. /// [Serializable] public class LogisticsInfo : AopObject { /// /// 物流公司code /// [XmlElement("logistics_code")] public string LogisticsCode { get; set; } /// /// 物流公司名称 /// [XmlElement("logistics_name")] public string LogisticsName { get; set; } /// /// 物流单号 /// [XmlElement("logistics_no")] public string LogisticsNo { get; set; } } }