2018-07-18 20:13:14 +08:00
|
|
|
|
package com.nis.domain.log;
|
|
|
|
|
|
|
2018-12-17 01:56:37 +08:00
|
|
|
|
import com.nis.util.excel.ExcelField;
|
2018-07-18 20:13:14 +08:00
|
|
|
|
import com.wordnik.swagger.annotations.ApiModelProperty;
|
|
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
|
* @ClassName:MmVoipIpLog
|
|
|
|
|
|
* @Description:TODO(这里用一句话描述这个类的作用)
|
|
|
|
|
|
* @author (zdx)
|
|
|
|
|
|
* @date 2018年7月16日 下午2:57:12
|
|
|
|
|
|
* @version V1.0
|
|
|
|
|
|
*/
|
|
|
|
|
|
public class MmVoipLog extends BaseLogEntity<MmVoipLog> {
|
|
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
|
*
|
|
|
|
|
|
*/
|
|
|
|
|
|
private static final long serialVersionUID = -9218072642855154505L;
|
|
|
|
|
|
@ApiModelProperty(value="VOIP通话时长(秒)", required=true)
|
2018-12-17 01:56:37 +08:00
|
|
|
|
@ExcelField(title="duation",sort=8)
|
2018-07-18 20:13:14 +08:00
|
|
|
|
private String duation;
|
2018-12-17 01:56:37 +08:00
|
|
|
|
|
2018-07-18 20:13:14 +08:00
|
|
|
|
@ApiModelProperty(value="VOIP协议", required=true)
|
2018-12-17 01:56:37 +08:00
|
|
|
|
@ExcelField(title="voip_protocol",sort=9)
|
2018-07-24 15:58:20 +08:00
|
|
|
|
private String voipProtocol;
|
2018-12-17 01:56:37 +08:00
|
|
|
|
|
2018-07-18 20:13:14 +08:00
|
|
|
|
@ApiModelProperty(value="主叫VOIP账号", required=false)
|
2018-12-17 01:56:37 +08:00
|
|
|
|
@ExcelField(title="calling_account",sort=10)
|
2018-07-18 20:13:14 +08:00
|
|
|
|
private String callingAccount;
|
2018-12-17 01:56:37 +08:00
|
|
|
|
|
2018-07-18 20:13:14 +08:00
|
|
|
|
@ApiModelProperty(value="被叫VOIP账号", required=false)
|
2018-12-17 01:56:37 +08:00
|
|
|
|
@ExcelField(title="called_account",sort=11)
|
2018-07-18 20:13:14 +08:00
|
|
|
|
private String calledAccount;
|
2018-12-17 01:56:37 +08:00
|
|
|
|
|
2018-07-18 20:13:14 +08:00
|
|
|
|
@ApiModelProperty(value="VOIP主叫电信号码", required=false)
|
2018-12-17 01:56:37 +08:00
|
|
|
|
@ExcelField(title="calling_number",sort=12)
|
2018-07-18 20:13:14 +08:00
|
|
|
|
private String callingNumber;
|
2018-12-17 01:56:37 +08:00
|
|
|
|
|
2018-07-18 20:13:14 +08:00
|
|
|
|
@ApiModelProperty(value="VOIP被叫电信号码", required=false)
|
2018-12-17 01:56:37 +08:00
|
|
|
|
@ExcelField(title="called_number",sort=13)
|
2018-07-18 20:13:14 +08:00
|
|
|
|
private String calledNumber;
|
2018-12-17 01:56:37 +08:00
|
|
|
|
|
2018-07-18 20:13:14 +08:00
|
|
|
|
@ApiModelProperty(value="主叫VOIP语音文件存放服务器IP", required=true)
|
2018-12-17 01:56:37 +08:00
|
|
|
|
@ExcelField(title="from_to_store_ip",sort=14)
|
2018-07-18 20:13:14 +08:00
|
|
|
|
private String fromToStoreIp;
|
2018-12-17 01:56:37 +08:00
|
|
|
|
|
2018-07-18 20:13:14 +08:00
|
|
|
|
@ApiModelProperty(value="主叫VOIP语音文件存放服务器URL", required=true)
|
2018-12-17 01:56:37 +08:00
|
|
|
|
@ExcelField(title="from_to_store_url",sort=15)
|
2018-07-18 20:13:14 +08:00
|
|
|
|
private String fromToStoreUrl;
|
2018-12-17 01:56:37 +08:00
|
|
|
|
|
2018-07-18 20:13:14 +08:00
|
|
|
|
@ApiModelProperty(value="被叫VOIP语音文件存放服务器IP", required=true)
|
2018-12-17 01:56:37 +08:00
|
|
|
|
@ExcelField(title="to_from_store_ip",sort=16)
|
2018-07-18 20:13:14 +08:00
|
|
|
|
private String toFromStoreIp;
|
2018-12-17 01:56:37 +08:00
|
|
|
|
|
2018-07-18 20:13:14 +08:00
|
|
|
|
@ApiModelProperty(value="被叫VOIP语音文件存放服务器URL", required=true)
|
2018-12-17 01:56:37 +08:00
|
|
|
|
@ExcelField(title="to_from_store_url",sort=17)
|
2018-07-18 20:13:14 +08:00
|
|
|
|
private String toFromStoreUrl;
|
2018-12-17 01:56:37 +08:00
|
|
|
|
|
2018-07-18 20:13:14 +08:00
|
|
|
|
@ApiModelProperty(value="节目ID", required=true)
|
2018-12-17 01:56:37 +08:00
|
|
|
|
@ExcelField(title="pid",sort=18)
|
2018-07-18 20:13:14 +08:00
|
|
|
|
private String pid;
|
2018-12-17 01:56:37 +08:00
|
|
|
|
|
2018-07-18 20:13:14 +08:00
|
|
|
|
@ApiModelProperty(value="封堵现场片段路径", required=false)
|
2018-12-17 01:56:37 +08:00
|
|
|
|
@ExcelField(title="log_uri",sort=19)
|
2018-07-18 20:13:14 +08:00
|
|
|
|
private String logUri;
|
2018-12-17 01:56:37 +08:00
|
|
|
|
|
2018-07-18 20:13:14 +08:00
|
|
|
|
@ApiModelProperty(value="有害级别", required=false)
|
2018-12-17 01:56:37 +08:00
|
|
|
|
@ExcelField(title="harm_level",sort=20)
|
2018-07-18 20:13:14 +08:00
|
|
|
|
private Integer level;
|
2018-12-17 01:56:37 +08:00
|
|
|
|
|
2018-07-18 20:13:14 +08:00
|
|
|
|
@ApiModelProperty(value="封堵类型", required=false)
|
2018-12-17 01:56:37 +08:00
|
|
|
|
@ExcelField(title="fd_type",sort=21)
|
2018-07-18 20:13:14 +08:00
|
|
|
|
private Integer fdType;
|
|
|
|
|
|
|
2018-12-17 01:56:37 +08:00
|
|
|
|
|
2018-07-18 20:13:14 +08:00
|
|
|
|
public String getPid() {
|
|
|
|
|
|
return pid;
|
|
|
|
|
|
}
|
|
|
|
|
|
public void setPid(String pid) {
|
|
|
|
|
|
this.pid = pid;
|
|
|
|
|
|
}
|
|
|
|
|
|
public Integer getLevel() {
|
|
|
|
|
|
return level;
|
|
|
|
|
|
}
|
|
|
|
|
|
public void setLevel(Integer level) {
|
|
|
|
|
|
this.level = level;
|
|
|
|
|
|
}
|
|
|
|
|
|
public String getLogUri() {
|
|
|
|
|
|
return logUri;
|
|
|
|
|
|
}
|
|
|
|
|
|
public void setLogUri(String logUri) {
|
|
|
|
|
|
this.logUri = logUri;
|
|
|
|
|
|
}
|
|
|
|
|
|
public Integer getFdType() {
|
|
|
|
|
|
return fdType;
|
|
|
|
|
|
}
|
|
|
|
|
|
public void setFdType(Integer fdType) {
|
|
|
|
|
|
this.fdType = fdType;
|
|
|
|
|
|
}
|
2018-07-24 15:58:20 +08:00
|
|
|
|
public String getVoipProtocol() {
|
|
|
|
|
|
return voipProtocol;
|
2018-07-18 20:13:14 +08:00
|
|
|
|
}
|
2018-07-24 15:58:20 +08:00
|
|
|
|
public void setVoipProtocol(String voipProtocol) {
|
|
|
|
|
|
this.voipProtocol = voipProtocol;
|
2018-07-18 20:13:14 +08:00
|
|
|
|
}
|
|
|
|
|
|
public String getDuation() {
|
|
|
|
|
|
return duation;
|
|
|
|
|
|
}
|
|
|
|
|
|
public void setDuation(String duation) {
|
|
|
|
|
|
this.duation = duation;
|
|
|
|
|
|
}
|
|
|
|
|
|
public String getCallingAccount() {
|
|
|
|
|
|
return callingAccount;
|
|
|
|
|
|
}
|
|
|
|
|
|
public void setCallingAccount(String callingAccount) {
|
|
|
|
|
|
this.callingAccount = callingAccount;
|
|
|
|
|
|
}
|
|
|
|
|
|
public String getCalledAccount() {
|
|
|
|
|
|
return calledAccount;
|
|
|
|
|
|
}
|
|
|
|
|
|
public void setCalledAccount(String calledAccount) {
|
|
|
|
|
|
this.calledAccount = calledAccount;
|
|
|
|
|
|
}
|
|
|
|
|
|
public String getCallingNumber() {
|
|
|
|
|
|
return callingNumber;
|
|
|
|
|
|
}
|
|
|
|
|
|
public void setCallingNumber(String callingNumber) {
|
|
|
|
|
|
this.callingNumber = callingNumber;
|
|
|
|
|
|
}
|
|
|
|
|
|
public String getCalledNumber() {
|
|
|
|
|
|
return calledNumber;
|
|
|
|
|
|
}
|
|
|
|
|
|
public void setCalledNumber(String calledNumber) {
|
|
|
|
|
|
this.calledNumber = calledNumber;
|
|
|
|
|
|
}
|
|
|
|
|
|
public String getFromToStoreIp() {
|
|
|
|
|
|
return fromToStoreIp;
|
|
|
|
|
|
}
|
|
|
|
|
|
public void setFromToStoreIp(String fromToStoreIp) {
|
|
|
|
|
|
this.fromToStoreIp = fromToStoreIp;
|
|
|
|
|
|
}
|
|
|
|
|
|
public String getFromToStoreUrl() {
|
|
|
|
|
|
return fromToStoreUrl;
|
|
|
|
|
|
}
|
|
|
|
|
|
public void setFromToStoreUrl(String fromToStoreUrl) {
|
|
|
|
|
|
this.fromToStoreUrl = fromToStoreUrl;
|
|
|
|
|
|
}
|
|
|
|
|
|
public String getToFromStoreIp() {
|
|
|
|
|
|
return toFromStoreIp;
|
|
|
|
|
|
}
|
|
|
|
|
|
public void setToFromStoreIp(String toFromStoreIp) {
|
|
|
|
|
|
this.toFromStoreIp = toFromStoreIp;
|
|
|
|
|
|
}
|
|
|
|
|
|
public String getToFromStoreUrl() {
|
|
|
|
|
|
return toFromStoreUrl;
|
|
|
|
|
|
}
|
|
|
|
|
|
public void setToFromStoreUrl(String toFromStoreUrl) {
|
|
|
|
|
|
this.toFromStoreUrl = toFromStoreUrl;
|
|
|
|
|
|
}
|
|
|
|
|
|
}
|