using System; using System.Xml.Serialization; namespace Aop.Api.Domain { /// /// OrderLogisticsInformationRequest Data Structure. /// [Serializable] public class OrderLogisticsInformationRequest : AopObject { /// /// 物流公司编号。 物流公司编号值请查看产品文档 注:该值为空时,有可能匹配不到物流信息。若有则必传 /// [XmlElement("logistics_code")] public string LogisticsCode { get; set; } /// /// 物流单号 /// [XmlElement("tracking_no")] public string TrackingNo { get; set; } } }