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;
}
}