1、ddos配置添加user_region字段;新增voip和流媒体业务;
2、ddos日志查询接口添加isBlock查询条件; 3、新增NTC VoIP、流媒体、文件摘要原始日志查询接口; 4、NTC BGP日志添加type、asNumber、route三个字段;
This commit is contained in:
31
src/main/java/com/nis/domain/restful/NtcStreamMediaLog.java
Normal file
31
src/main/java/com/nis/domain/restful/NtcStreamMediaLog.java
Normal file
@@ -0,0 +1,31 @@
|
||||
package com.nis.domain.restful;
|
||||
|
||||
import com.nis.domain.LogEntity;
|
||||
import com.wordnik.swagger.annotations.ApiModelProperty;
|
||||
|
||||
/**
|
||||
* @ClassName:NtcStreamMediaLog
|
||||
* @Description:TODO(这里用一句话描述这个类的作用)
|
||||
* @author zdx
|
||||
* @date 2018年10月9日 下午6:33:11
|
||||
* @version V1.0
|
||||
*/
|
||||
public class NtcStreamMediaLog extends LogEntity<NtcStreamMediaLog> {
|
||||
private static final long serialVersionUID = 8993339583170276251L;
|
||||
@ApiModelProperty(value="节目访问地址", required=true)
|
||||
protected String url;
|
||||
@ApiModelProperty(value="传输协议", required=true)
|
||||
protected String protocol;
|
||||
public String getUrl() {
|
||||
return url;
|
||||
}
|
||||
public void setUrl(String url) {
|
||||
this.url = url;
|
||||
}
|
||||
public String getProtocol() {
|
||||
return protocol;
|
||||
}
|
||||
public void setProtocol(String protocol) {
|
||||
this.protocol = protocol;
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user