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
package com.yanzuoguang.log;
import java.util.ArrayList;
import java.util.Collection;
import java.util.List;
/**
* 统计对象
*
* @author 颜佐光
*/
public class LogCountResult {
/**
* 今日日志开始时间
*/
private String todayTime;
/**
* 日志记录
*/
private List<LogUrlCountVo> list = new ArrayList<>();
public LogCountResult() {
}
public LogCountResult(String todayTime, Collection<LogUrlCountVo> list) {
this.todayTime = todayTime;
this.list.addAll(list);
}
public String getTodayTime() {
return todayTime;
}
public void setTodayTime(String todayTime) {
this.todayTime = todayTime;
}
public List<LogUrlCountVo> getList() {
return list;
}
public void setList(List<LogUrlCountVo> list) {
this.list = list;
}
}