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

eleme.openapi.sdk.api.entity.data.OSaleDetailBase Maven / Gradle / Ivy

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

public class OSaleDetailBase{

    /**
     * 营业额(菜品销售额+餐盒收入+配送收入)
     */
    private double totalOrderAmount;
    public double getTotalOrderAmount() {
        return totalOrderAmount;
    }
    public void setTotalOrderAmount(double totalOrderAmount) {
        this.totalOrderAmount = totalOrderAmount;
    }
    
    /**
     * 菜品销售额
     */
    private double foodAmount;
    public double getFoodAmount() {
        return foodAmount;
    }
    public void setFoodAmount(double foodAmount) {
        this.foodAmount = foodAmount;
    }
    
    /**
     * 餐盒收入
     */
    private double boxAmount;
    public double getBoxAmount() {
        return boxAmount;
    }
    public void setBoxAmount(double boxAmount) {
        this.boxAmount = boxAmount;
    }
    
    /**
     * 配送收入
     */
    private double deliverAmount;
    public double getDeliverAmount() {
        return deliverAmount;
    }
    public void setDeliverAmount(double deliverAmount) {
        this.deliverAmount = deliverAmount;
    }
    
    /**
     * 店铺支出(活动补贴+平台收取费用)
     */
    private double totalPayout;
    public double getTotalPayout() {
        return totalPayout;
    }
    public void setTotalPayout(double totalPayout) {
        this.totalPayout = totalPayout;
    }
    
    /**
     * 活动补贴
     */
    private double restaurantDiscount;
    public double getRestaurantDiscount() {
        return restaurantDiscount;
    }
    public void setRestaurantDiscount(double restaurantDiscount) {
        this.restaurantDiscount = restaurantDiscount;
    }
    
    /**
     * 平台收取费用
     */
    private double platformFee;
    public double getPlatformFee() {
        return platformFee;
    }
    public void setPlatformFee(double platformFee) {
        this.platformFee = platformFee;
    }
    
    /**
     * 店铺收入
     */
    private double restaurantIncome;
    public double getRestaurantIncome() {
        return restaurantIncome;
    }
    public void setRestaurantIncome(double restaurantIncome) {
        this.restaurantIncome = restaurantIncome;
    }
    
    /**
     * 有效订单数
     */
    private int validOrderCount;
    public int getValidOrderCount() {
        return validOrderCount;
    }
    public void setValidOrderCount(int validOrderCount) {
        this.validOrderCount = validOrderCount;
    }
    
    /**
     * 无效订单数
     */
    private int invalidOrderCount;
    public int getInvalidOrderCount() {
        return invalidOrderCount;
    }
    public void setInvalidOrderCount(int invalidOrderCount) {
        this.invalidOrderCount = invalidOrderCount;
    }
    
    /**
     * 预计亏损金额
     */
    private double lossSaleAmount;
    public double getLossSaleAmount() {
        return lossSaleAmount;
    }
    public void setLossSaleAmount(double lossSaleAmount) {
        this.lossSaleAmount = lossSaleAmount;
    }
    
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy