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

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

package com.alipay.api.domain;

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

/**
 * 奖品定价策略
 *
 * @author auto create
 * @since 1.0, 2020-05-09 19:52:04
 */
public class PrizePriceStrategy extends AlipayObject {

	private static final long serialVersionUID = 6768475744467583475L;

	/**
	 * 根据不同的奖品类型填写不同的值,具体用法联系营销技术获取
	 */
	@ApiField("max_price")
	private String maxPrice;

	/**
	 * 根据不同的奖品类型填写不同的值,具体用法联系营销技术获取
	 */
	@ApiField("min_price")
	private String minPrice;

	/**
	 * 废弃-不再使用
	 */
	@ApiField("stragety_value")
	private String stragetyValue;

	/**
	 * RANDOM_PRICE随机,FIX_PRICE定额奖品,不同的定价策略填写不同值,具体根据业务评估
	 */
	@ApiField("strategy_type")
	private String strategyType;

	/**
	 * 定价策略值,根据不同的奖品类型填写不同的值,具体用法联系营销技术获取
	 */
	@ApiField("strategy_value")
	private String strategyValue;

	public String getMaxPrice() {
		return this.maxPrice;
	}
	public void setMaxPrice(String maxPrice) {
		this.maxPrice = maxPrice;
	}

	public String getMinPrice() {
		return this.minPrice;
	}
	public void setMinPrice(String minPrice) {
		this.minPrice = minPrice;
	}

	public String getStragetyValue() {
		return this.stragetyValue;
	}
	public void setStragetyValue(String stragetyValue) {
		this.stragetyValue = stragetyValue;
	}

	public String getStrategyType() {
		return this.strategyType;
	}
	public void setStrategyType(String strategyType) {
		this.strategyType = strategyType;
	}

	public String getStrategyValue() {
		return this.strategyValue;
	}
	public void setStrategyValue(String strategyValue) {
		this.strategyValue = strategyValue;
	}

}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy