com.alipay.api.domain.PriceInfoDTO 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, 2024-09-01 22:13:15
*/
public class PriceInfoDTO extends AlipayObject {
private static final long serialVersionUID = 1466341751218961259L;
/**
* 附加金额,单位:元,精确到小数点后两位。计算规则
*/
@ApiField("additional_price")
private String additionalPrice;
/**
* 商家优惠金额,单位:元,精确到小数点后两位
*/
@ApiField("discounted_price")
private String discountedPrice;
/**
* 运费,单位:元,精确到小数点后两位
*/
@ApiField("freight")
private String freight;
/**
* 商家侧储蓄卡金额,单位为元,精确到小数点后两位
*/
@ApiField("merchant_value_price")
private String merchantValuePrice;
/**
* 订单总价,单位:元,精确到小数点后两位
*/
@ApiField("order_price")
private String orderPrice;
public String getAdditionalPrice() {
return this.additionalPrice;
}
public void setAdditionalPrice(String additionalPrice) {
this.additionalPrice = additionalPrice;
}
public String getDiscountedPrice() {
return this.discountedPrice;
}
public void setDiscountedPrice(String discountedPrice) {
this.discountedPrice = discountedPrice;
}
public String getFreight() {
return this.freight;
}
public void setFreight(String freight) {
this.freight = freight;
}
public String getMerchantValuePrice() {
return this.merchantValuePrice;
}
public void setMerchantValuePrice(String merchantValuePrice) {
this.merchantValuePrice = merchantValuePrice;
}
public String getOrderPrice() {
return this.orderPrice;
}
public void setOrderPrice(String orderPrice) {
this.orderPrice = orderPrice;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy