|
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
|
package com.huaheng.mobile.task;
public class TodayInfo {
private Integer todayTAask;
private Integer todayReceipt;
private Integer todayShipment;
public Integer getTodayTAask() {
return todayTAask;
}
public void setTodayTAask(Integer todayTAask) {
this.todayTAask = todayTAask;
}
public Integer getTodayReceipt() {
return todayReceipt;
}
public void setTodayReceipt(Integer todayReceipt) {
this.todayReceipt = todayReceipt;
}
public Integer getTodayShipment() {
return todayShipment;
}
public void setTodayShipment(Integer todayShipment) {
this.todayShipment = todayShipment;
}
}
|