All Downloads are FREE. Search and download functionalities are using the official Maven repository.

eleme.openapi.sdk.api.entity.order.OpenFeeDetail Maven / Gradle / Ivy

There is a newer version: 1.30.71
Show newest version
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