using System; using System.Xml.Serialization; using System.Collections.Generic; namespace Aop.Api.Domain { /// /// AlipayCommerceLogisticsWaybillMinimctSyncModel Data Structure. /// [Serializable] public class AlipayCommerceLogisticsWaybillMinimctSyncModel : AopObject { /// /// 物流公司编码,具体详见接口开发文档 /// [XmlElement("logistics_code")] public string LogisticsCode { get; set; } /// /// 运单参数扩展列表 /// [XmlArray("merchant_ext_info")] [XmlArrayItem("param_ext_info")] public List MerchantExtInfo { get; set; } /// /// 运单号 /// [XmlElement("waybill_no")] public string WaybillNo { get; set; } } }