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

eleme.openapi.sdk.api.entity.product.OStepPrice Maven / Gradle / Ivy

The newest version!
package eleme.openapi.sdk.api.entity.product;

import eleme.openapi.sdk.api.enumeration.product.*;
import eleme.openapi.sdk.api.entity.product.*;
import java.util.*;
import java.math.BigDecimal;
import com.fasterxml.jackson.annotation.JsonFormat;

public class OStepPrice{

    /**
     * 区间起始值(包含)
     */
    private Integer rangeStart;
    public Integer getRangeStart() {
        return rangeStart;
    }
    public void setRangeStart(Integer rangeStart) {
        this.rangeStart = rangeStart;
    }
    
    /**
     * 区间结束值(不包含)
     */
    private Integer rangeEnd;
    public Integer getRangeEnd() {
        return rangeEnd;
    }
    public void setRangeEnd(Integer rangeEnd) {
        this.rangeEnd = rangeEnd;
    }
    
    /**
     * 固定价格(元)
     */
    private Double fixedPrice;
    public Double getFixedPrice() {
        return fixedPrice;
    }
    public void setFixedPrice(Double fixedPrice) {
        this.fixedPrice = fixedPrice;
    }
    
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy