using System; using System.Collections.Generic; using Newtonsoft.Json; namespace Alipay.AopSdk.Core.Domain { /// /// AlipayEcoLogisticsExpressNonserviceModifyModel Data Structure. /// [Serializable] public class AlipayEcoLogisticsExpressNonserviceModifyModel : AopObject { /// /// 非服务区区域代码列表 /// [JsonProperty("area_codes")] public List AreaCodes { get; set; } /// /// 物流机构编码,参照物流机构编码文档, /// /// 点此下载 /// /// 。 /// [JsonProperty("logis_merch_code")] public string LogisMerchCode { get; set; } } }