BaseReport增加time属性

获取日志,打印部分信息
proxy菜单sql:日志菜单有控制策略改为proxy下
header中增加edge的ip显示下划线问题
This commit is contained in:
DuanDongmei
2018-12-07 17:29:30 +08:00
parent f93b86708d
commit 6fe2167f58
14 changed files with 27 additions and 13 deletions

View File

@@ -28,6 +28,7 @@ public class BaseReport<T> extends BaseEntity<T>{
protected Long sum;
protected Integer service;
protected String reportTime;
protected String time;
/**
* sum
* @return sum
@@ -70,4 +71,10 @@ public class BaseReport<T> extends BaseEntity<T>{
public void setReportTime(String reportTime) {
this.reportTime = reportTime;
}
public String getTime() {
return time;
}
public void setTime(String time) {
this.time = time;
}
}