日志查询:修改接口查询参数
This commit is contained in:
@@ -514,19 +514,19 @@ public class BaseController {
|
|||||||
}
|
}
|
||||||
|
|
||||||
if (StringUtils.isNotBlank(entry.getProtocol())) {
|
if (StringUtils.isNotBlank(entry.getProtocol())) {
|
||||||
params.put("searchProtocol", entry.getProtocol());
|
params.put("searchTransProto", entry.getProtocol());
|
||||||
}
|
}
|
||||||
if (entry.getServiceType()!=null) {
|
if (entry.getServiceType()!=null) {
|
||||||
params.put("searchServiceType", entry.getServiceType());
|
params.put("searchService", entry.getServiceType());
|
||||||
}
|
}
|
||||||
if (StringUtils.isNotBlank(entry.getServerIp())) {
|
if (StringUtils.isNotBlank(entry.getServerIp())) {
|
||||||
params.put("searchServerIp", entry.getServerIp());
|
params.put("searchDIp", entry.getServerIp());
|
||||||
}
|
}
|
||||||
if (StringUtils.isNotBlank(entry.getClientIp())) {
|
if (StringUtils.isNotBlank(entry.getClientIp())) {
|
||||||
params.put("searchClientIp", entry.getClientIp());
|
params.put("searchSIp", entry.getClientIp());
|
||||||
}
|
}
|
||||||
if (StringUtils.isNotBlank(entry.getCljIp())) {
|
if (StringUtils.isNotBlank(entry.getCljIp())) {
|
||||||
params.put("searchCljIp", entry.getCljIp());
|
params.put("searchCapIp", entry.getCljIp());
|
||||||
}
|
}
|
||||||
if (entry.getDirection()!=null) {
|
if (entry.getDirection()!=null) {
|
||||||
params.put("searchDirection", entry.getDirection());
|
params.put("searchDirection", entry.getDirection());
|
||||||
|
|||||||
Reference in New Issue
Block a user