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