HttpClient.java 增加getMsg日志调用接口get方法

This commit is contained in:
zhanghongqing
2018-06-11 14:06:41 +08:00
parent bf8db3e47e
commit 7b53da4f27
4 changed files with 205 additions and 1 deletions

View File

@@ -0,0 +1,40 @@
package com.nis.domain.log;
public class OpenVpnLog extends BaseLogEntity<OpenVpnLog> {
/**
*
*/
private static final long serialVersionUID = -3197594223008465746L;
private String version;//版本号
private String encryptMode;//加密方式
private Integer hmac;//是否有HMAC
private Integer tunnelType;//通道类型
public String getVersion() {
return version;
}
public void setVersion(String version) {
this.version = version;
}
public String getEncryptMode() {
return encryptMode;
}
public void setEncryptMode(String encryptMode) {
this.encryptMode = encryptMode;
}
public Integer getHmac() {
return hmac;
}
public void setHmac(Integer hmac) {
this.hmac = hmac;
}
public Integer getTunnelType() {
return tunnelType;
}
public void setTunnelType(Integer tunnelType) {
this.tunnelType = tunnelType;
}
}