Skip to content
  • P
    Projects
  • G
    Groups
  • S
    Snippets
  • Help

android / dayu

  • This project
    • Loading...
  • Sign in
Go to a project
  • Project
  • Repository
  • Issues 0
  • Merge Requests 0
  • Pipelines
  • Wiki
  • Snippets
  • Members
  • Activity
  • Graph
  • Charts
  • Create a new issue
  • Jobs
  • Commits
  • Issue Boards
  • Files
  • Commits
  • Branches
  • Tags
  • Contributors
  • Graph
  • Compare
  • Charts
Switch branch/tag
  • dayu
  • ..
  • model
  • SalTabNumBean.java
Find file
BlameHistoryPermalink
  • mReturn's avatar
    销售&搜索&评论 · f5d1dccc
    mReturn committed 5 years ago
    f5d1dccc
SalTabNumBean.java 912 Bytes
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47
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;
    }
}