All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.alipay.api.domain.AlipayEcoLogisticsExpressPriceModifyModel Maven / Gradle / Ivy

The newest version!
package com.alipay.api.domain;

import com.alipay.api.AlipayObject;
import com.alipay.api.internal.mapping.ApiField;

/**
 * 更新寄件价格接口
 *
 * @author auto create
 * @since 1.0, 2017-04-06 18:04:40
 */
public class AlipayEcoLogisticsExpressPriceModifyModel extends AlipayObject {

	private static final long serialVersionUID = 7317767883445424592L;

	/**
	 * 查询区域类型
AREA_PRVN:省代码;
AREA_CITY:市代码;
	 */
	@ApiField("area_type")
	private String areaType;

	/**
	 * 续重价格(单位:元)
	 */
	@ApiField("extra_weight_price")
	private String extraWeightPrice;

	/**
	 * 续重单位(单位:克)
	 */
	@ApiField("extra_weight_unit")
	private Long extraWeightUnit;

	/**
	 * 发货区域代码
区域类型为省代码时为省代码;
区域类型为市代码时为市代码;
省市区代码采用国家标准编码,详见国家统计局数据,点此下载。
	 */
	@ApiField("from_code")
	private String fromCode;

	/**
	 * 物流机构编码,参照物流机构编码文档,点此下载。
	 */
	@ApiField("logis_merch_code")
	private String logisMerchCode;

	/**
	 * 首重重量(单位:克)
	 */
	@ApiField("preset_weight")
	private Long presetWeight;

	/**
	 * 首重价格(单位:元)
	 */
	@ApiField("preset_weight_price")
	private String presetWeightPrice;

	/**
	 * 产品类型编码,取值如下:
STANDARD:标准快递。这是寄件平台默认支持的产品分类,如有其他产品分类的支持需求,可以发送邮件至[email protected]联系。
	 */
	@ApiField("product_type_code")
	private String productTypeCode;

	/**
	 * 收货区域代码
区域类型为省代码时为省代码;
区域类型为市代码时为市代码;
省市区代码采用国家标准编码,详见国家统计局数据,点此下载。
	 */
	@ApiField("to_code")
	private String toCode;

	public String getAreaType() {
		return this.areaType;
	}
	public void setAreaType(String areaType) {
		this.areaType = areaType;
	}

	public String getExtraWeightPrice() {
		return this.extraWeightPrice;
	}
	public void setExtraWeightPrice(String extraWeightPrice) {
		this.extraWeightPrice = extraWeightPrice;
	}

	public Long getExtraWeightUnit() {
		return this.extraWeightUnit;
	}
	public void setExtraWeightUnit(Long extraWeightUnit) {
		this.extraWeightUnit = extraWeightUnit;
	}

	public String getFromCode() {
		return this.fromCode;
	}
	public void setFromCode(String fromCode) {
		this.fromCode = fromCode;
	}

	public String getLogisMerchCode() {
		return this.logisMerchCode;
	}
	public void setLogisMerchCode(String logisMerchCode) {
		this.logisMerchCode = logisMerchCode;
	}

	public Long getPresetWeight() {
		return this.presetWeight;
	}
	public void setPresetWeight(Long presetWeight) {
		this.presetWeight = presetWeight;
	}

	public String getPresetWeightPrice() {
		return this.presetWeightPrice;
	}
	public void setPresetWeightPrice(String presetWeightPrice) {
		this.presetWeightPrice = presetWeightPrice;
	}

	public String getProductTypeCode() {
		return this.productTypeCode;
	}
	public void setProductTypeCode(String productTypeCode) {
		this.productTypeCode = productTypeCode;
	}

	public String getToCode() {
		return this.toCode;
	}
	public void setToCode(String toCode) {
		this.toCode = toCode;
	}

}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy