eleme.openapi.sdk.api.entity.order.OpenFeeDetail 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 OpenFeeDetail{
/**
* 描述
*/
private String title;
public String getTitle() {
return title;
}
public void setTitle(String title) {
this.title = title;
}
/**
* 服务费总金额
*/
private BigDecimal total;
public BigDecimal getTotal() {
return total;
}
public void setTotal(BigDecimal total) {
this.total = total;
}
/**
* 折扣、活动等支出项
*/
private List feeGroup;
public List getFeeGroup() {
return feeGroup;
}
public void setFeeGroup(List feeGroup) {
this.feeGroup = feeGroup;
}
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy