1、pxy_http_log 字段web_site改为website;

2、修改NTC_STREAM_MEDIA_LOG表名改为NTC_STREAMING_MEDIA_LOG后未改部分;
This commit is contained in:
zhangdongxu
2018-10-16 12:00:45 +08:00
parent a37ea37b20
commit c026c6d54b
3 changed files with 8 additions and 8 deletions

View File

@@ -40,7 +40,7 @@ public class PxyHttpLog extends LogEntity<PxyHttpLog> {
@ApiModelProperty(value="原始应答体", required=true)
protected String respBody;
@ApiModelProperty(value="域名", required=true)
protected String webSite;
protected String website;
public String getUrl() {
return url;
@@ -120,11 +120,11 @@ public class PxyHttpLog extends LogEntity<PxyHttpLog> {
public void setRespBody(String respBody) {
this.respBody = respBody;
}
public String getWebSite() {
return webSite;
public String getWebsite() {
return website;
}
public void setWebSite(String webSite) {
this.webSite = webSite;
public void setWebsite(String website) {
this.website = website;
}
}