This repository has been archived on 2025-09-14. You can view files and clone it, but cannot push or open issues or pull requests.
Files
k18-ntcs-web-ntc/src/main/java/com/nis/domain/log/NtcOpenVpnLog.java

41 lines
905 B
Java
Raw Normal View History

package com.nis.domain.log;
public class NtcOpenVpnLog extends BaseLogEntity<NtcOpenVpnLog> {
/**
*
*/
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;
}
}