using System; using System.Xml.Serialization; using Aop.Api.Domain; namespace Aop.Api.Response { /// /// KoubeiTradeKbdeliveryDeliveryApplyResponse. /// public class KoubeiTradeKbdeliveryDeliveryApplyResponse : AopResponse { /// /// 附加数据,在查询API和物流变更通知回执中原样返回,该字段主要用于第三方系统携带订单的自定义数据 /// [XmlElement("attach")] public string Attach { get; set; } /// /// 物流单成功创建时间 时间格式:yyyyMMddHHmmss /// [XmlElement("gmt_create")] public string GmtCreate { get; set; } /// /// 返回物流载体信息; 在取餐柜模式下,为返回申请的设备信息 /// [XmlElement("logistics_external_info")] public LogisticsExternalInfo LogisticsExternalInfo { get; set; } /// /// 口碑物流单,单号; /// [XmlElement("logistics_order_no")] public string LogisticsOrderNo { get; set; } } }