VOIP日志表voip协议类型字段名称由protocol改为voipProtocol
This commit is contained in:
@@ -15,7 +15,7 @@ public class MmSampleVoipLog extends LogEntity<MmSampleVoipLog> {
|
|||||||
@ApiModelProperty(value = "VOIP通话时长(秒)", required = true)
|
@ApiModelProperty(value = "VOIP通话时长(秒)", required = true)
|
||||||
protected String duation;
|
protected String duation;
|
||||||
@ApiModelProperty(value = "VOIP协议", required = true)
|
@ApiModelProperty(value = "VOIP协议", required = true)
|
||||||
protected String protocol;
|
protected String voipProtocol;
|
||||||
@ApiModelProperty(value = "主叫VOIP账号", required = true)
|
@ApiModelProperty(value = "主叫VOIP账号", required = true)
|
||||||
protected String callingAccount;
|
protected String callingAccount;
|
||||||
@ApiModelProperty(value = "被叫VOIP账号", required = true)
|
@ApiModelProperty(value = "被叫VOIP账号", required = true)
|
||||||
@@ -64,13 +64,17 @@ public class MmSampleVoipLog extends LogEntity<MmSampleVoipLog> {
|
|||||||
public void setFdType(Integer fdType) {
|
public void setFdType(Integer fdType) {
|
||||||
this.fdType = fdType;
|
this.fdType = fdType;
|
||||||
}
|
}
|
||||||
|
/**
|
||||||
public String getProtocol() {
|
* @return the voipProtocol
|
||||||
return protocol;
|
*/
|
||||||
|
public String getVoipProtocol() {
|
||||||
|
return voipProtocol;
|
||||||
}
|
}
|
||||||
|
/**
|
||||||
public void setProtocol(String protocol) {
|
* @param voipProtocol the voipProtocol to set
|
||||||
this.protocol = protocol;
|
*/
|
||||||
|
public void setVoipProtocol(String voipProtocol) {
|
||||||
|
this.voipProtocol = voipProtocol;
|
||||||
}
|
}
|
||||||
|
|
||||||
public String getDuation() {
|
public String getDuation() {
|
||||||
|
|||||||
@@ -18,7 +18,7 @@ public class MmVoipAccountLog extends LogEntity<MmVoipAccountLog> {
|
|||||||
@ApiModelProperty(value="VOIP通话时长(秒)", required=true)
|
@ApiModelProperty(value="VOIP通话时长(秒)", required=true)
|
||||||
protected String duation;
|
protected String duation;
|
||||||
@ApiModelProperty(value="VOIP协议", required=true)
|
@ApiModelProperty(value="VOIP协议", required=true)
|
||||||
protected String protocol;
|
protected String voipProtocol;
|
||||||
@ApiModelProperty(value="主叫VOIP账号", required=true)
|
@ApiModelProperty(value="主叫VOIP账号", required=true)
|
||||||
protected String callingAccount;
|
protected String callingAccount;
|
||||||
@ApiModelProperty(value="被叫VOIP账号", required=true)
|
@ApiModelProperty(value="被叫VOIP账号", required=true)
|
||||||
@@ -62,11 +62,17 @@ public class MmVoipAccountLog extends LogEntity<MmVoipAccountLog> {
|
|||||||
public void setFdType(Integer fdType) {
|
public void setFdType(Integer fdType) {
|
||||||
this.fdType = fdType;
|
this.fdType = fdType;
|
||||||
}
|
}
|
||||||
public String getProtocol() {
|
/**
|
||||||
return protocol;
|
* @return the voipProtocol
|
||||||
|
*/
|
||||||
|
public String getVoipProtocol() {
|
||||||
|
return voipProtocol;
|
||||||
}
|
}
|
||||||
public void setProtocol(String protocol) {
|
/**
|
||||||
this.protocol = protocol;
|
* @param voipProtocol the voipProtocol to set
|
||||||
|
*/
|
||||||
|
public void setVoipProtocol(String voipProtocol) {
|
||||||
|
this.voipProtocol = voipProtocol;
|
||||||
}
|
}
|
||||||
public String getDuation() {
|
public String getDuation() {
|
||||||
return duation;
|
return duation;
|
||||||
|
|||||||
@@ -18,7 +18,7 @@ public class MmVoipIpLog extends LogEntity<MmVoipIpLog> {
|
|||||||
@ApiModelProperty(value="VOIP通话时长(秒)", required=true)
|
@ApiModelProperty(value="VOIP通话时长(秒)", required=true)
|
||||||
protected String duation;
|
protected String duation;
|
||||||
@ApiModelProperty(value="VOIP协议", required=true)
|
@ApiModelProperty(value="VOIP协议", required=true)
|
||||||
protected String protocol;
|
protected String voipProtocol;
|
||||||
@ApiModelProperty(value="主叫VOIP账号", required=true)
|
@ApiModelProperty(value="主叫VOIP账号", required=true)
|
||||||
protected String callingAccount;
|
protected String callingAccount;
|
||||||
@ApiModelProperty(value="被叫VOIP账号", required=true)
|
@ApiModelProperty(value="被叫VOIP账号", required=true)
|
||||||
@@ -62,11 +62,17 @@ public class MmVoipIpLog extends LogEntity<MmVoipIpLog> {
|
|||||||
public void setFdType(Integer fdType) {
|
public void setFdType(Integer fdType) {
|
||||||
this.fdType = fdType;
|
this.fdType = fdType;
|
||||||
}
|
}
|
||||||
public String getProtocol() {
|
/**
|
||||||
return protocol;
|
* @return the voipProtocol
|
||||||
|
*/
|
||||||
|
public String getVoipProtocol() {
|
||||||
|
return voipProtocol;
|
||||||
}
|
}
|
||||||
public void setProtocol(String protocol) {
|
/**
|
||||||
this.protocol = protocol;
|
* @param voipProtocol the voipProtocol to set
|
||||||
|
*/
|
||||||
|
public void setVoipProtocol(String voipProtocol) {
|
||||||
|
this.voipProtocol = voipProtocol;
|
||||||
}
|
}
|
||||||
public String getDuation() {
|
public String getDuation() {
|
||||||
return duation;
|
return duation;
|
||||||
|
|||||||
@@ -549,7 +549,7 @@
|
|||||||
<result column="client_locate" jdbcType="VARCHAR" property="clientLocate" />
|
<result column="client_locate" jdbcType="VARCHAR" property="clientLocate" />
|
||||||
|
|
||||||
<result column="duation" jdbcType="VARCHAR" property="duation" />
|
<result column="duation" jdbcType="VARCHAR" property="duation" />
|
||||||
<result column="protocol" jdbcType="VARCHAR" property="protocol" />
|
<result column="voip_protocol" jdbcType="VARCHAR" property="voipProtocol" />
|
||||||
<result column="calling_account" jdbcType="VARCHAR" property="callingAccount" />
|
<result column="calling_account" jdbcType="VARCHAR" property="callingAccount" />
|
||||||
<result column="called_account" jdbcType="VARCHAR" property="calledAccount" />
|
<result column="called_account" jdbcType="VARCHAR" property="calledAccount" />
|
||||||
<result column="calling_number" jdbcType="VARCHAR" property="callingNumber" />
|
<result column="calling_number" jdbcType="VARCHAR" property="callingNumber" />
|
||||||
@@ -585,7 +585,7 @@
|
|||||||
<result column="client_locate" jdbcType="VARCHAR" property="clientLocate" />
|
<result column="client_locate" jdbcType="VARCHAR" property="clientLocate" />
|
||||||
|
|
||||||
<result column="duation" jdbcType="VARCHAR" property="duation" />
|
<result column="duation" jdbcType="VARCHAR" property="duation" />
|
||||||
<result column="protocol" jdbcType="VARCHAR" property="protocol" />
|
<result column="voip_protocol" jdbcType="VARCHAR" property="voipProtocol" />
|
||||||
<result column="calling_account" jdbcType="VARCHAR" property="callingAccount" />
|
<result column="calling_account" jdbcType="VARCHAR" property="callingAccount" />
|
||||||
<result column="called_account" jdbcType="VARCHAR" property="calledAccount" />
|
<result column="called_account" jdbcType="VARCHAR" property="calledAccount" />
|
||||||
<result column="calling_number" jdbcType="VARCHAR" property="callingNumber" />
|
<result column="calling_number" jdbcType="VARCHAR" property="callingNumber" />
|
||||||
@@ -769,7 +769,7 @@
|
|||||||
<result column="client_locate" jdbcType="VARCHAR" property="clientLocate" />
|
<result column="client_locate" jdbcType="VARCHAR" property="clientLocate" />
|
||||||
|
|
||||||
<result column="duation" jdbcType="VARCHAR" property="duation" />
|
<result column="duation" jdbcType="VARCHAR" property="duation" />
|
||||||
<result column="protocol" jdbcType="VARCHAR" property="protocol" />
|
<result column="voip_protocol" jdbcType="VARCHAR" property="voipProtocol" />
|
||||||
<result column="calling_account" jdbcType="VARCHAR" property="callingAccount" />
|
<result column="calling_account" jdbcType="VARCHAR" property="callingAccount" />
|
||||||
<result column="called_account" jdbcType="VARCHAR" property="calledAccount" />
|
<result column="called_account" jdbcType="VARCHAR" property="calledAccount" />
|
||||||
<result column="calling_number" jdbcType="VARCHAR" property="callingNumber" />
|
<result column="calling_number" jdbcType="VARCHAR" property="callingNumber" />
|
||||||
|
|||||||
Reference in New Issue
Block a user