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