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

eleme.openapi.sdk.api.entity.order.FeeGroupModel 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 FeeGroupModel{

    /**
     * 费用名
     */
    private String name;
    public String getName() {
        return name;
    }
    public void setName(String name) {
        this.name = name;
    }
    
    /**
     * 活动明细项
     */
    private List fees;
    public List getFees() {
        return fees;
    }
    public void setFees(List fees) {
        this.fees = fees;
    }
    
    /**
     * 折扣
     */
    private Double discount;
    public Double getDiscount() {
        return discount;
    }
    public void setDiscount(Double discount) {
        this.discount = discount;
    }
    
    /**
     * 提示
     */
    private PopTips popTips;
    public PopTips getPopTips() {
        return popTips;
    }
    public void setPopTips(PopTips popTips) {
        this.popTips = popTips;
    }
    
    /**
     * 实际价格
     */
    private BigDecimal actualPrice;
    public BigDecimal getActualPrice() {
        return actualPrice;
    }
    public void setActualPrice(BigDecimal actualPrice) {
        this.actualPrice = actualPrice;
    }
    
    /**
     * 原价格
     */
    private BigDecimal originPrice;
    public BigDecimal getOriginPrice() {
        return originPrice;
    }
    public void setOriginPrice(BigDecimal originPrice) {
        this.originPrice = originPrice;
    }
    
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy