yujian
2020-05-11 712fb305d6f79961e879a2f543107e19d7f9e8a2
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
package com.yeshi.fanli.vo.order;
 
import java.util.List;
 
//团队订单统计
public class TeamOrderStatisticVO {
    private List<Integer> today;
    private List<Integer> yesterday;
    private List<Integer> thisMonth;
    private List<Integer> total;
 
    public List<Integer> getTotal() {
        return total;
    }
 
    public void setTotal(List<Integer> total) {
        this.total = total;
    }
 
    public List<Integer> getToday() {
        return today;
    }
 
    public void setToday(List<Integer> today) {
        this.today = today;
    }
 
    public List<Integer> getYesterday() {
        return yesterday;
    }
 
    public void setYesterday(List<Integer> yesterday) {
        this.yesterday = yesterday;
    }
 
    public List<Integer> getThisMonth() {
        return thisMonth;
    }
 
    public void setThisMonth(List<Integer> thisMonth) {
        this.thisMonth = thisMonth;
    }
}