日志查询时间同步日志总量查询时间.

This commit is contained in:
zhangwenqing
2018-09-03 12:37:46 +08:00
parent bf0d81421b
commit f81584de87
4 changed files with 18 additions and 6 deletions

View File

@@ -34,6 +34,7 @@ public class BaseLogEntity<T> extends BaseEntity<T> {
protected Integer functionId;
protected Integer action;
protected String date;//配置界面日志总量查询时间
//自定义字段
protected String seltype;//选中类型,页面搜索用
protected String searchFoundStartTime;//开始时间格式为yyyy-mm-dd hh24:mi:ss
@@ -213,6 +214,12 @@ public class BaseLogEntity<T> extends BaseEntity<T> {
public void setSceneFile(String sceneFile) {
this.sceneFile = sceneFile;
}
public String getDate() {
return date;
}
public void setDate(String date) {
this.date = date;
}
@Override
public String toString() {
return "{\"cfgId\"=\"" + cfgId + "\", \"foundTime\"=\"" + foundTime