1.日志总量查询日志修改 2.提交p2p监测sql

This commit is contained in:
zhangwenqing
2018-09-13 16:46:56 +08:00
parent ae5cb30aa1
commit 14c02a80ee
35 changed files with 67 additions and 34 deletions

View File

@@ -40,6 +40,8 @@ public class BaseLogEntity<T> extends BaseEntity<T> {
protected String searchFoundStartTime;//开始时间格式为yyyy-mm-dd hh24:mi:ss
protected String searchFoundEndTime;//结束时间,格式同上
protected String isLogTotalSearch;//由配置列表点击日志总量进行查询的标识
public String getFoundTime() {
return foundTime;
}
@@ -220,27 +222,24 @@ public class BaseLogEntity<T> extends BaseEntity<T> {
public void setDate(String date) {
this.date = date;
}
public String getIsLogTotalSearch() {
return isLogTotalSearch;
}
public void setIsLogTotalSearch(String isLogTotalSearch) {
this.isLogTotalSearch = isLogTotalSearch;
}
@Override
public String toString() {
return "{\"cfgId\"=\"" + cfgId + "\", \"foundTime\"=\"" + foundTime
+ "\", \"recvTime\"=\"" + recvTime + "\", \"transProto\"=\""
+ transProto + "\", \"addrType\"=\"" + addrType
+ "\", \"dIp\"=\"" + dIp + "\", \"sIp\"=\"" + sIp
+ "\", \"dPort\"=\"" + dPort + "\", \"sPort\"=\"" + sPort
+ "\", \"service\"=\"" + service + "\", \"entranceId\"=\""
+ entranceId + "\", \"deviceId\"=\"" + deviceId
+ "\", \"direction\"=\"" + direction + "\", \"streamDir\"=\""
+ streamDir + "\", \"capIp\"=\"" + capIp
+ "\", \"addrList\"=\"" + addrList + "\", \"serverLocate\"=\""
+ serverLocate + "\", \"clientLocate\"=\"" + clientLocate
+ "\", \"userRegion\"=\"" + userRegion + "\", \"sAsn\"=\""
+ sAsn + "\", \"dAsn\"=\"" + dAsn + "\", \"sSubscribeId\"=\""
+ sSubscribeId + "\", \"dSubscribeId\"=\"" + dSubscribeId
+ "\", \"sceneFile\"=\"" + sceneFile + "\", \"functionId\"=\""
+ functionId + "\", \"action\"=\"" + action
+ "\", \"seltype\"=\"" + seltype
+ "\", \"searchFoundStartTime\"=\"" + searchFoundStartTime
+ "\", \"searchFoundEndTime\"=\"" + searchFoundEndTime + "}";
return "BaseLogEntity [cfgId=" + cfgId + ", foundTime=" + foundTime + ", recvTime=" + recvTime + ", transProto="
+ transProto + ", addrType=" + addrType + ", dIp=" + dIp + ", sIp=" + sIp + ", dPort=" + dPort
+ ", sPort=" + sPort + ", service=" + service + ", entranceId=" + entranceId + ", deviceId=" + deviceId
+ ", direction=" + direction + ", streamDir=" + streamDir + ", capIp=" + capIp + ", addrList="
+ addrList + ", serverLocate=" + serverLocate + ", clientLocate=" + clientLocate + ", userRegion="
+ userRegion + ", sAsn=" + sAsn + ", dAsn=" + dAsn + ", sSubscribeId=" + sSubscribeId
+ ", dSubscribeId=" + dSubscribeId + ", sceneFile=" + sceneFile + ", functionId=" + functionId
+ ", action=" + action + ", date=" + date + ", seltype=" + seltype + ", searchFoundStartTime="
+ searchFoundStartTime + ", searchFoundEndTime=" + searchFoundEndTime + ", isLogTotalSearch="
+ isLogTotalSearch + "]";
}