HTTP原始日志添加searchUrl查询条件

This commit is contained in:
zhangdongxu
2018-09-07 14:24:53 +08:00
parent a888eee8a2
commit 441286b160

View File

@@ -40,6 +40,7 @@ public class NtcHttpLog extends LogEntity {
@ApiModelProperty(value="应答体转储文件KEY", required=true)
protected String resBodyKey;
protected String searchUrl; //命中url
public String getUrl() {
return url;
}
@@ -125,4 +126,18 @@ public class NtcHttpLog extends LogEntity {
public void setResBodyKey(String resBodyKey) {
this.resBodyKey = resBodyKey;
}
/**
* @return the searchUrl
*/
public String getSearchUrl() {
return searchUrl;
}
/**
* @param searchUrl the searchUrl to set
*/
public void setSearchUrl(String searchUrl) {
this.searchUrl = searchUrl;
}
}