package com.bigfish.salecenter.model;

public class SalTabNumBean {
    /**
     * goodsCount : 52
     * selling : 0
     * engineerCollecd : 0
     * selled : 0
     */

    private int goodsCount;
    private int selling;
    private int engineerCollecd;
    private int selled;

    public int getGoodsCount() {
        return goodsCount;
    }

    public void setGoodsCount(int goodsCount) {
        this.goodsCount = goodsCount;
    }

    public int getSelling() {
        return selling;
    }

    public void setSelling(int selling) {
        this.selling = selling;
    }

    public int getEngineerCollecd() {
        return engineerCollecd;
    }

    public void setEngineerCollecd(int engineerCollecd) {
        this.engineerCollecd = engineerCollecd;
    }

    public int getSelled() {
        return selled;
    }

    public void setSelled(int selled) {
        this.selled = selled;
    }
}