eleme.openapi.sdk.api.entity.order.ORefundAmountInfo Maven / Gradle / Ivy
package eleme.openapi.sdk.api.entity.order;
import eleme.openapi.sdk.api.enumeration.order.*;
import eleme.openapi.sdk.api.entity.order.*;
import java.util.*;
import java.math.BigDecimal;
import com.fasterxml.jackson.annotation.JsonFormat;
public class ORefundAmountInfo{
/**
* 商品原价
*/
private double originalPrice;
public double getOriginalPrice() {
return originalPrice;
}
public void setOriginalPrice(double originalPrice) {
this.originalPrice = originalPrice;
}
/**
* 餐盒费
*/
private double packingBoxFee;
public double getPackingBoxFee() {
return packingBoxFee;
}
public void setPackingBoxFee(double packingBoxFee) {
this.packingBoxFee = packingBoxFee;
}
/**
* 配送费
*/
private double deliveryFee;
public double getDeliveryFee() {
return deliveryFee;
}
public void setDeliveryFee(double deliveryFee) {
this.deliveryFee = deliveryFee;
}
/**
* 平摊在商品上的平台补贴
*/
private double platformSubsidy;
public double getPlatformSubsidy() {
return platformSubsidy;
}
public void setPlatformSubsidy(double platformSubsidy) {
this.platformSubsidy = platformSubsidy;
}
/**
* 平摊在商品上的代理商补贴
*/
private double agentSubsidy;
public double getAgentSubsidy() {
return agentSubsidy;
}
public void setAgentSubsidy(double agentSubsidy) {
this.agentSubsidy = agentSubsidy;
}
/**
* 平摊在商品上的商家补贴
*/
private double merchantSubsidy;
public double getMerchantSubsidy() {
return merchantSubsidy;
}
public void setMerchantSubsidy(double merchantSubsidy) {
this.merchantSubsidy = merchantSubsidy;
}
/**
* 用户收到退款金额
*/
private double userReceivedAmount;
public double getUserReceivedAmount() {
return userReceivedAmount;
}
public void setUserReceivedAmount(double userReceivedAmount) {
this.userReceivedAmount = userReceivedAmount;
}
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy