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

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

package com.alipay.api.domain;

import java.util.Date;
import java.util.List;

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

/**
 * 报价明细
 *
 * @author auto create
 * @since 1.0, 2023-05-10 14:03:48
 */
public class AccessQuotationDto extends AlipayObject {

	private static final long serialVersionUID = 8181659161292461875L;

	/**
	 * currency_code,用于商品同步,由调用方传入
	 */
	@ApiField("currency_code")
	private String currencyCode;

	/**
	 * effective_date,用于商品同步,由调用方传入
	 */
	@ApiField("effective_date")
	private Date effectiveDate;

	/**
	 * expire_date,用于商品同步,由调用方传入
	 */
	@ApiField("expire_date")
	private Date expireDate;

	/**
	 * ladder_price,用于商品同步,由调用方传入
	 */
	@ApiField("ladder_price")
	private Boolean ladderPrice;

	/**
	 * ladder_price_list,用于商品同步,由调用方传入
	 */
	@ApiListField("ladder_price_list")
	@ApiField("access_ladder_price_dto")
	private List ladderPriceList;

	/**
	 * origin_unit_price,用于商品同步,由调用方传入
	 */
	@ApiField("origin_unit_price")
	private String originUnitPrice;

	/**
	 * sku_attr_value_list,用于商品同步,由调用方传入
	 */
	@ApiListField("sku_attr_value_list")
	@ApiField("access_sku_attr_value_dto")
	private List skuAttrValueList;

	/**
	 * source_sku_id,用于商品同步,由调用方传入
	 */
	@ApiField("source_sku_id")
	private String sourceSkuId;

	/**
	 * unit_price,用于商品同步,由调用方传入
	 */
	@ApiField("unit_price")
	private String unitPrice;

	public String getCurrencyCode() {
		return this.currencyCode;
	}
	public void setCurrencyCode(String currencyCode) {
		this.currencyCode = currencyCode;
	}

	public Date getEffectiveDate() {
		return this.effectiveDate;
	}
	public void setEffectiveDate(Date effectiveDate) {
		this.effectiveDate = effectiveDate;
	}

	public Date getExpireDate() {
		return this.expireDate;
	}
	public void setExpireDate(Date expireDate) {
		this.expireDate = expireDate;
	}

	public Boolean getLadderPrice() {
		return this.ladderPrice;
	}
	public void setLadderPrice(Boolean ladderPrice) {
		this.ladderPrice = ladderPrice;
	}

	public List getLadderPriceList() {
		return this.ladderPriceList;
	}
	public void setLadderPriceList(List ladderPriceList) {
		this.ladderPriceList = ladderPriceList;
	}

	public String getOriginUnitPrice() {
		return this.originUnitPrice;
	}
	public void setOriginUnitPrice(String originUnitPrice) {
		this.originUnitPrice = originUnitPrice;
	}

	public List getSkuAttrValueList() {
		return this.skuAttrValueList;
	}
	public void setSkuAttrValueList(List skuAttrValueList) {
		this.skuAttrValueList = skuAttrValueList;
	}

	public String getSourceSkuId() {
		return this.sourceSkuId;
	}
	public void setSourceSkuId(String sourceSkuId) {
		this.sourceSkuId = sourceSkuId;
	}

	public String getUnitPrice() {
		return this.unitPrice;
	}
	public void setUnitPrice(String unitPrice) {
		this.unitPrice = unitPrice;
	}

}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy