161 lines
4.5 KiB
Java
161 lines
4.5 KiB
Java
package com.nis.domain.log;
|
||
|
||
import com.nis.util.excel.ExcelField;
|
||
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)
|
||
@ExcelField(title="duation",sort=8)
|
||
private String duation;
|
||
|
||
@ApiModelProperty(value="VOIP协议", required=true)
|
||
@ExcelField(title="voip_protocol",sort=9)
|
||
private String voipProtocol;
|
||
|
||
@ApiModelProperty(value="主叫VOIP账号", required=false)
|
||
@ExcelField(title="calling_account",sort=10)
|
||
private String callingAccount;
|
||
|
||
@ApiModelProperty(value="被叫VOIP账号", required=false)
|
||
@ExcelField(title="called_account",sort=11)
|
||
private String calledAccount;
|
||
|
||
@ApiModelProperty(value="VOIP主叫电信号码", required=false)
|
||
@ExcelField(title="calling_number",sort=12)
|
||
private String callingNumber;
|
||
|
||
@ApiModelProperty(value="VOIP被叫电信号码", required=false)
|
||
@ExcelField(title="called_number",sort=13)
|
||
private String calledNumber;
|
||
|
||
@ApiModelProperty(value="主叫VOIP语音文件存放服务器IP", required=true)
|
||
@ExcelField(title="from_to_store_ip",sort=14)
|
||
private String fromToStoreIp;
|
||
|
||
@ApiModelProperty(value="主叫VOIP语音文件存放服务器URL", required=true)
|
||
@ExcelField(title="from_to_store_url",sort=15)
|
||
private String fromToStoreUrl;
|
||
|
||
@ApiModelProperty(value="被叫VOIP语音文件存放服务器IP", required=true)
|
||
@ExcelField(title="to_from_store_ip",sort=16)
|
||
private String toFromStoreIp;
|
||
|
||
@ApiModelProperty(value="被叫VOIP语音文件存放服务器URL", required=true)
|
||
@ExcelField(title="to_from_store_url",sort=17)
|
||
private String toFromStoreUrl;
|
||
|
||
@ApiModelProperty(value="节目ID", required=true)
|
||
@ExcelField(title="pid",sort=18)
|
||
private String pid;
|
||
|
||
@ApiModelProperty(value="封堵现场片段路径", required=false)
|
||
@ExcelField(title="log_uri",sort=19)
|
||
private String logUri;
|
||
|
||
@ApiModelProperty(value="有害级别", required=false)
|
||
@ExcelField(title="harm_level",sort=20)
|
||
private Integer level;
|
||
|
||
@ApiModelProperty(value="封堵类型", required=false)
|
||
@ExcelField(title="fd_type",sort=21)
|
||
private Integer fdType;
|
||
|
||
|
||
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;
|
||
}
|
||
public String getVoipProtocol() {
|
||
return voipProtocol;
|
||
}
|
||
public void setVoipProtocol(String voipProtocol) {
|
||
this.voipProtocol = voipProtocol;
|
||
}
|
||
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;
|
||
}
|
||
}
|