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

eleme.openapi.sdk.api.entity.enterprise.ShopOnlineOrderFoodDetail Maven / Gradle / Ivy

There is a newer version: 1.30.71
Show newest version
package eleme.openapi.sdk.api.entity.enterprise;

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

public class ShopOnlineOrderFoodDetail{

    /**
     * 菜品名称
     */
    private String foodName;
    public String getFoodName() {
        return foodName;
    }
    public void setFoodName(String foodName) {
        this.foodName = foodName;
    }
    
    /**
     * 菜品份数
     */
    private Integer foodNum;
    public Integer getFoodNum() {
        return foodNum;
    }
    public void setFoodNum(Integer foodNum) {
        this.foodNum = foodNum;
    }
    
    /**
     * 菜品原价
     */
    private BigDecimal foodPrice;
    public BigDecimal getFoodPrice() {
        return foodPrice;
    }
    public void setFoodPrice(BigDecimal foodPrice) {
        this.foodPrice = foodPrice;
    }
    
    /**
     * 优惠价格
     */
    private BigDecimal favorPrice;
    public BigDecimal getFavorPrice() {
        return favorPrice;
    }
    public void setFavorPrice(BigDecimal favorPrice) {
        this.favorPrice = favorPrice;
    }
    
    /**
     * 优惠后价格
     */
    private BigDecimal afterFavorPrice;
    public BigDecimal getAfterFavorPrice() {
        return afterFavorPrice;
    }
    public void setAfterFavorPrice(BigDecimal afterFavorPrice) {
        this.afterFavorPrice = afterFavorPrice;
    }
    
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy