using System; using System.Xml.Serialization; namespace Aop.Api.Domain { /// /// LogisticsDetail Data Structure. /// [Serializable] public class LogisticsDetail : AopObject { /// /// 物流类型, POST 平邮, EXPRESS 其他快递, VIRTUAL 虚拟物品, EMS EMS, DIRECT 无需物流。 /// [XmlElement("logistics_type")] public string LogisticsType { get; set; } } }