refer改为referer

This commit is contained in:
chenjinsong
2018-08-16 16:41:17 +08:00
parent e1a035762a
commit c2c97f222c
16 changed files with 57 additions and 58 deletions

View File

@@ -4,7 +4,6 @@ import com.wordnik.swagger.annotations.ApiModelProperty;
/**
* @ClassName:MmAvIpLog
* @Description:TODO(这里用一句话描述这个类的作用)
* @author (zdx)
* @date 2018年7月16日 下午2:54:23
* @version V1.0
@@ -19,7 +18,7 @@ public class MmAvIpLog extends BaseLogEntity<MmAvIpLog> {
@ApiModelProperty(value="封堵现场片段路径", required=true)
protected String logUri;
@ApiModelProperty(value="入口页面", required=true)
protected String refer;
protected String referer;
@ApiModelProperty(value="有害级别", required=true)
protected Integer level;
@ApiModelProperty(value="封堵类型", required=true)
@@ -44,11 +43,11 @@ public class MmAvIpLog extends BaseLogEntity<MmAvIpLog> {
public void setLogUri(String logUri) {
this.logUri = logUri;
}
public String getRefer() {
return refer;
public String getReferer() {
return referer;
}
public void setRefer(String refer) {
this.refer = refer;
public void setReferer(String referer) {
this.referer = referer;
}
public Integer getLevel() {
return level;

View File

@@ -19,7 +19,7 @@ public class MmAvUrlLog extends BaseLogEntity<MmAvUrlLog> {
@ApiModelProperty(value="封堵现场片段路径", required=true)
protected String logUri;
@ApiModelProperty(value="入口页面", required=true)
protected String refer;
protected String referer;
@ApiModelProperty(value="有害级别", required=true)
protected Integer level;
@ApiModelProperty(value="封堵类型", required=true)
@@ -44,11 +44,11 @@ public class MmAvUrlLog extends BaseLogEntity<MmAvUrlLog> {
public void setLogUri(String logUri) {
this.logUri = logUri;
}
public String getRefer() {
return refer;
public String getReferer() {
return referer;
}
public void setRefer(String refer) {
this.refer = refer;
public void setReferer(String referer) {
this.referer = referer;
}
public Integer getLevel() {
return level;

View File

@@ -7,7 +7,7 @@ public class MmPicIpLog extends BaseLogEntity<MmPicIpLog> {
private String pid;// 节目ID
private String url;// 节目访问地址
private String logUri;// fd现场片段路径
private String refer;// 入口页面
private String referer;// 入口页面
private Integer level;// 有害级别
private Integer fdType;// fd类型
private String protocol;// 传输协议
@@ -30,11 +30,11 @@ public class MmPicIpLog extends BaseLogEntity<MmPicIpLog> {
public void setLogUri(String logUri) {
this.logUri = logUri;
}
public String getRefer() {
return refer;
public String getReferer() {
return referer;
}
public void setRefer(String refer) {
this.refer = refer;
public void setReferer(String referer) {
this.referer = referer;
}
public Integer getLevel() {
return level;

View File

@@ -7,7 +7,7 @@ public class MmPicUrlLog extends BaseLogEntity<MmPicUrlLog>{
private String pid;// 节目ID
private String url;// 节目访问地址
private String logUri;// fd现场片段路径
private String refer;// 入口页面
private String referer;// 入口页面
private Integer level;// 有害级别
private Integer fdType;// fd类型
private String protocol;// 传输协议
@@ -30,11 +30,11 @@ public class MmPicUrlLog extends BaseLogEntity<MmPicUrlLog>{
public void setLogUri(String logUri) {
this.logUri = logUri;
}
public String getRefer() {
return refer;
public String getReferer() {
return referer;
}
public void setRefer(String refer) {
this.refer = refer;
public void setReferer(String referer) {
this.referer = referer;
}
public Integer getLevel() {
return level;

View File

@@ -7,7 +7,7 @@ public class MmSampleAudioLog extends BaseLogEntity<MmSampleAudioLog>{
private String pid;// 节目ID
private String url;// 节目访问地址
private String logUri;// fd现场片段路径
private String refer;// 入口页面
private String referer;// 入口页面
private Integer level;// 有害级别
private Integer fdType;// fd类型
private String protocol;// 传输协议
@@ -30,11 +30,11 @@ public class MmSampleAudioLog extends BaseLogEntity<MmSampleAudioLog>{
public void setLogUri(String logUri) {
this.logUri = logUri;
}
public String getRefer() {
return refer;
public String getReferer() {
return referer;
}
public void setRefer(String refer) {
this.refer = refer;
public void setReferer(String referer) {
this.referer = referer;
}
public Integer getLevel() {
return level;
@@ -56,7 +56,7 @@ public class MmSampleAudioLog extends BaseLogEntity<MmSampleAudioLog>{
}
@Override
public String toString() {
return "MmSampleAudioLog [pid=" + pid + ", url=" + url + ", logUri=" + logUri + ", refer=" + refer + ", level="
return "MmSampleAudioLog [pid=" + pid + ", url=" + url + ", logUri=" + logUri + ", referer=" + referer + ", level="
+ level + ", fdType=" + fdType + ", protocol=" + protocol + "]";
}
}

View File

@@ -7,7 +7,7 @@ public class MmSamplePicLog extends BaseLogEntity<MmSamplePicLog>{
private String pid;// 节目ID
private String url;// 节目访问地址
private String logUri;// fd现场片段路径
private String refer;// 入口页面
private String referer;// 入口页面
private Integer level;// 有害级别
private Integer fdType;// fd类型
private String protocol;// 传输协议
@@ -29,11 +29,11 @@ public class MmSamplePicLog extends BaseLogEntity<MmSamplePicLog>{
public void setLogUri(String logUri) {
this.logUri = logUri;
}
public String getRefer() {
return refer;
public String getReferer() {
return referer;
}
public void setRefer(String refer) {
this.refer = refer;
public void setReferer(String referer) {
this.referer = referer;
}
public Integer getLevel() {
return level;
@@ -55,7 +55,7 @@ public class MmSamplePicLog extends BaseLogEntity<MmSamplePicLog>{
}
@Override
public String toString() {
return "MmSamplePicLog [pid=" + pid + ", url=" + url + ", logUri=" + logUri + ", refer=" + refer + ", level="
return "MmSamplePicLog [pid=" + pid + ", url=" + url + ", logUri=" + logUri + ", referer=" + referer + ", level="
+ level + ", fdType=" + fdType + ", protocol=" + protocol + "]";
}

View File

@@ -7,7 +7,7 @@ public class MmSampleVideoLog extends BaseLogEntity<MmSampleVideoLog>{
private String pid;// 节目ID
private String url;// 节目访问地址
private String logUri;// fd现场片段路径
private String refer;// 入口页面
private String referer;// 入口页面
private Integer level;// 有害级别
private Integer fdType;// fd类型
private String protocol;// 传输协议
@@ -29,11 +29,11 @@ public class MmSampleVideoLog extends BaseLogEntity<MmSampleVideoLog>{
public void setLogUri(String logUri) {
this.logUri = logUri;
}
public String getRefer() {
return refer;
public String getReferer() {
return referer;
}
public void setRefer(String refer) {
this.refer = refer;
public void setReferer(String referer) {
this.referer = referer;
}
public Integer getLevel() {
return level;
@@ -55,7 +55,7 @@ public class MmSampleVideoLog extends BaseLogEntity<MmSampleVideoLog>{
}
@Override
public String toString() {
return "MmSampleVideoLog [pid=" + pid + ", url=" + url + ", logUri=" + logUri + ", refer=" + refer + ", level="
return "MmSampleVideoLog [pid=" + pid + ", url=" + url + ", logUri=" + logUri + ", referer=" + referer + ", level="
+ level + ", fdType=" + fdType + ", protocol=" + protocol + "]";
}

View File

@@ -168,7 +168,7 @@ $(document).ready(function(){
<th><spring:message code='pid'/></th>
<th><spring:message code='access_url'/></th>
<th><spring:message code='log_uri'/></th>
<th><spring:message code='refer'/></th>
<th><spring:message code='referer'/></th>
<th><spring:message code='harm_level'/></th>
<th><spring:message code='fd_type'/></th>
<%-- <th><spring:message code='av_protocol'/></th> --%>
@@ -234,7 +234,7 @@ $(document).ready(function(){
</c:if>
</td>
<td>
${log.refer}
${log.referer}
</td>
<td>${log.level}</td>
<!--0动态黑名单FD1静态配置FD2首次分析命中 -->

View File

@@ -168,7 +168,7 @@ $(document).ready(function(){
<th><spring:message code='pid'/></th>
<th><spring:message code='access_url'/></th>
<th><spring:message code='log_uri'/></th>
<th><spring:message code='refer'/></th>
<th><spring:message code='referer'/></th>
<th><spring:message code='harm_level'/></th>
<th><spring:message code='fd_type'/></th>
<%-- <th><spring:message code='av_protocol'/></th> --%>
@@ -234,7 +234,7 @@ $(document).ready(function(){
</c:if>
</td>
<td>
${log.refer}
${log.referer}
</td>
<td>${log.level}</td>
<!--0动态黑名单FD1静态配置FD2首次分析命中 -->

View File

@@ -168,7 +168,7 @@ $(document).ready(function(){
<th><spring:message code='pid'/></th>
<th><spring:message code='access_url'/></th>
<th><spring:message code='log_uri'/></th>
<th><spring:message code='refer'/></th>
<th><spring:message code='referer'/></th>
<th><spring:message code='harm_level'/></th>
<th><spring:message code='fd_type'/></th>
<%--<th><spring:message code='av_protocol'/></th> --%>
@@ -234,8 +234,8 @@ $(document).ready(function(){
</a>
</c:if>
</td>
<td title="${fns:escapeHtml(log.refer)}">
${fns:stringFormat(log.refer,30)}
<td title="${fns:escapeHtml(log.referer)}">
${fns:stringFormat(log.referer,30)}
</td>
<td>${log.level}</td>
<td>

View File

@@ -168,7 +168,7 @@ $(document).ready(function(){
<th><spring:message code='pid'/></th>
<th><spring:message code='access_url'/></th>
<th><spring:message code='log_uri'/></th>
<th><spring:message code='refer'/></th>
<th><spring:message code='referer'/></th>
<th><spring:message code='harm_level'/></th>
<th><spring:message code='fd_type'/></th>
<%-- <th><spring:message code='av_protocol'/></th> --%>
@@ -235,7 +235,7 @@ $(document).ready(function(){
</c:if>
</td>
<td>
${log.refer}
${log.referer}
</td>
<td>${log.level}</td>
<td>

View File

@@ -168,7 +168,7 @@ $(document).ready(function(){
<th><spring:message code='pid'/></th>
<th><spring:message code='access_url'/></th>
<th><spring:message code='log_uri'/></th>
<th><spring:message code='refer'/></th>
<th><spring:message code='referer'/></th>
<th><spring:message code='harm_level'/></th>
<th><spring:message code='fd_type'/></th>
<%-- <th><spring:message code='av_protocol'/></th> --%>
@@ -236,7 +236,7 @@ $(document).ready(function(){
<%-- <c:if test="${fn:startsWith(log.logUri, \"http\")}">${log.logUri }</c:if>
<c:if test="${!fn:startsWith(log.logUri, \"http\")}">http://${log.logUri }</c:if>'>http://${log.logUri }</a> --%>
</td>
<td>${log.refer}</td>
<td>${log.referer}</td>
<td>${log.level}</td>
<!--0动态黑名单FD1静态配置FD2首次分析命中 -->
<td>

View File

@@ -168,7 +168,7 @@ $(document).ready(function(){
<th><spring:message code='pid'/></th>
<th><spring:message code='access_url'/></th>
<th><spring:message code='log_uri'/></th>
<th><spring:message code='refer'/></th>
<th><spring:message code='referer'/></th>
<th><spring:message code='harm_level'/></th>
<th><spring:message code='fd_type'/></th>
<%-- <th><spring:message code='av_protocol'/></th> --%>
@@ -233,7 +233,7 @@ $(document).ready(function(){
<%-- <c:if test="${fn:startsWith(log.logUri, \"http\")}">${log.logUri }</c:if>
<c:if test="${!fn:startsWith(log.logUri, \"http\")}">http://${log.logUri }</c:if>'>http://${log.logUri }</a> --%>
</td>
<td>${log.refer }</td>
<td>${log.referer }</td>
<td>${log.level }</td>
<!--0动态黑名单FD1静态配置FD2首次分析命中 -->
<td>

View File

@@ -226,7 +226,7 @@
<th><spring:message code='pid' /></th>
<th><spring:message code='access_url' /></th>
<th><spring:message code='log_uri' /></th>
<th><spring:message code='refer' /></th>
<th><spring:message code='referer' /></th>
<th><spring:message code='harm_level' /></th>
<th><spring:message code='fd_type' /></th>
<%-- <th><spring:message code='av_protocol' /></th> --%>
@@ -292,7 +292,7 @@
</a>
</c:if>
</td>
<td>${log.refer }</td>
<td>${log.referer }</td>
<td>${log.level}</td>
<td><c:if test="${log.fdType eq 0 }">
<spring:message code="black_block_list" />

View File

@@ -168,7 +168,7 @@ $(document).ready(function(){
<th><spring:message code='pid' /></th>
<th><spring:message code='access_url' /></th>
<th><spring:message code='log_uri' /></th>
<th><spring:message code='refer' /></th>
<th><spring:message code='referer' /></th>
<th><spring:message code='harm_level' /></th>
<th><spring:message code='fd_type' /></th>
<%-- <th><spring:message code='av_protocol' /></th> --%>
@@ -234,7 +234,7 @@ $(document).ready(function(){
</a>
</c:if>
</td>
<td>${log.refer }</td>
<td>${log.referer }</td>
<td>${log.level }</td>
<td>
<c:if test="${log.fdType eq 0 }"><spring:message code="black_block_list" /></c:if>

View File

@@ -168,7 +168,7 @@ $(document).ready(function(){
<th><spring:message code='pid' /></th>
<th><spring:message code='access_url' /></th>
<th><spring:message code='log_uri' /></th>
<th><spring:message code='refer' /></th>
<th><spring:message code='referer' /></th>
<th><spring:message code='harm_level' /></th>
<th><spring:message code='fd_type' /></th>
<%-- <th><spring:message code='av_protocol' /></th> --%>
@@ -234,7 +234,7 @@ $(document).ready(function(){
</a>
</c:if>
</td>
<td>${log.refer }</td>
<td>${log.referer }</td>
<td>${log.level}</td>
<td><c:if test="${log.fdType eq 0 }">
<spring:message code="black_block_list" />