package com.ishop.model.response;
|
|
import java.util.List;
|
|
public class ComputedOrderPriceResponse {
|
|
public Double getCouponFee() {
|
return couponFee;
|
}
|
|
public void setCouponFee(Double couponFee) {
|
this.couponFee = couponFee;
|
}
|
|
public Double getDeductionPrice() {
|
return deductionPrice;
|
}
|
|
public void setDeductionPrice(Double deductionPrice) {
|
this.deductionPrice = deductionPrice;
|
}
|
|
public Double getFreightFee() {
|
return freightFee;
|
}
|
|
public void setFreightFee(Double freightFee) {
|
this.freightFee = freightFee;
|
}
|
|
public Double getPayFee() {
|
return payFee;
|
}
|
|
public void setPayFee(Double payFee) {
|
this.payFee = payFee;
|
}
|
|
public Double getProTotalFee() {
|
return proTotalFee;
|
}
|
|
public void setProTotalFee(Double proTotalFee) {
|
this.proTotalFee = proTotalFee;
|
}
|
|
public Integer getSurplusIntegral() {
|
return surplusIntegral;
|
}
|
|
public void setSurplusIntegral(Integer surplusIntegral) {
|
this.surplusIntegral = surplusIntegral;
|
}
|
|
public Boolean getIsUseIntegral() {
|
return isUseIntegral;
|
}
|
|
public void setIsUseIntegral(Boolean useIntegral) {
|
isUseIntegral = useIntegral;
|
}
|
|
public Integer getUsedIntegral() {
|
return usedIntegral;
|
}
|
|
public void setUsedIntegral(Integer usedIntegral) {
|
this.usedIntegral = usedIntegral;
|
}
|
|
public Boolean getIntegralDeductionSwitch() {
|
return integralDeductionSwitch;
|
}
|
|
public void setIntegralDeductionSwitch(Boolean integralDeductionSwitch) {
|
this.integralDeductionSwitch = integralDeductionSwitch;
|
}
|
|
public List<ComputedMerchantOrderResponse> getMerOrderResponseList() {
|
return merOrderResponseList;
|
}
|
|
public void setMerOrderResponseList(List<ComputedMerchantOrderResponse> merOrderResponseList) {
|
this.merOrderResponseList = merOrderResponseList;
|
}
|
|
// @ApiModelProperty(value = "优惠券优惠金额")
|
private Double couponFee;
|
|
// @ApiModelProperty(value = "积分抵扣金额")
|
private Double deductionPrice;
|
|
// @ApiModelProperty(value = "运费金额")
|
private Double freightFee;
|
|
// @ApiModelProperty(value = "实际支付金额")
|
private Double payFee;
|
|
// @ApiModelProperty(value = "商品总金额")
|
private Double proTotalFee;
|
|
// @ApiModelProperty(value = "剩余积分")
|
private Integer surplusIntegral;
|
|
// @ApiModelProperty(value = "是否使用积分")
|
private Boolean isUseIntegral;
|
|
// @ApiModelProperty(value = "使用的积分")
|
private Integer usedIntegral;
|
|
// @ApiModelProperty(value = "积分抵扣开关")
|
private Boolean integralDeductionSwitch;
|
|
// @ApiModelProperty(value = "商户部分响应对象")
|
private List<ComputedMerchantOrderResponse> merOrderResponseList;
|
}
|