eleme.openapi.sdk.api.entity.finance.InsuranceFeeInfo Maven / Gradle / Ivy
The newest version!
package eleme.openapi.sdk.api.entity.finance;
import eleme.openapi.sdk.api.enumeration.finance.*;
import eleme.openapi.sdk.api.entity.finance.*;
import java.util.*;
import java.math.BigDecimal;
import com.fasterxml.jackson.annotation.JsonFormat;
public class InsuranceFeeInfo{
/**
* 保险类型:餐损险、食安险、餐损险plus
*/
private Byte orderType;
public Byte getOrderType() {
return orderType;
}
public void setOrderType(Byte orderType) {
this.orderType = orderType;
}
/**
* 应收保费金额
*/
private BigDecimal insuranceFeeAmount;
public BigDecimal getInsuranceFeeAmount() {
return insuranceFeeAmount;
}
public void setInsuranceFeeAmount(BigDecimal insuranceFeeAmount) {
this.insuranceFeeAmount = insuranceFeeAmount;
}
/**
* 平台补贴金额
*/
private BigDecimal platformSubsidyAmount;
public BigDecimal getPlatformSubsidyAmount() {
return platformSubsidyAmount;
}
public void setPlatformSubsidyAmount(BigDecimal platformSubsidyAmount) {
this.platformSubsidyAmount = platformSubsidyAmount;
}
/**
* 商户结算金额
*/
private BigDecimal merchantSettleAmount;
public BigDecimal getMerchantSettleAmount() {
return merchantSettleAmount;
}
public void setMerchantSettleAmount(BigDecimal merchantSettleAmount) {
this.merchantSettleAmount = merchantSettleAmount;
}
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy