using System; using System.Xml.Serialization; namespace Aop.Api.Domain { /// /// AlipayEcoLogisticsExpressPriceModifyModel Data Structure. /// [Serializable] public class AlipayEcoLogisticsExpressPriceModifyModel : AopObject { /// /// 查询区域类型 AREA_PRVN:省代码; AREA_CITY:市代码; /// [XmlElement("area_type")] public string AreaType { get; set; } /// /// 续重价格(单位:元) /// [XmlElement("extra_weight_price")] public string ExtraWeightPrice { get; set; } /// /// 续重单位(单位:克) /// [XmlElement("extra_weight_unit")] public long ExtraWeightUnit { get; set; } /// /// 发货区域代码 区域类型为省代码时为省代码; 区域类型为市代码时为市代码; 省市区代码采用国家标准编码,详见国家统计局数据,点此下载。 /// [XmlElement("from_code")] public string FromCode { get; set; } /// /// 物流机构编码,参照物流机构编码文档,点此下载。 /// [XmlElement("logis_merch_code")] public string LogisMerchCode { get; set; } /// /// 首重重量(单位:克) /// [XmlElement("preset_weight")] public long PresetWeight { get; set; } /// /// 首重价格(单位:元) /// [XmlElement("preset_weight_price")] public string PresetWeightPrice { get; set; } /// /// 产品类型编码,取值如下: STANDARD:标准快递。这是寄件平台默认支持的产品分类,如有其他产品分类的支持需求,可以发送邮件至xxx@alipay.com联系。 /// [XmlElement("product_type_code")] public string ProductTypeCode { get; set; } /// /// 收货区域代码 区域类型为省代码时为省代码; 区域类型为市代码时为市代码; 省市区代码采用国家标准编码,详见国家统计局数据,点此下载。 /// [XmlElement("to_code")] public string ToCode { get; set; } } }