Ssl,Pptp,L2tp 日志查询

This commit is contained in:
dell
2018-06-19 18:21:42 +08:00
parent 56a9917ad9
commit c9dcdedd87
15 changed files with 1036 additions and 8 deletions

View File

@@ -0,0 +1,23 @@
package com.nis.domain.log;
public class NtcPptpLog extends BaseLogEntity<NtcPptpLog> {
private static final long serialVersionUID = 6527360739786343374L;
private Integer tunnelType;// 通道类型
private Integer encryptMode;// 加密方式
public Integer getTunnelType() {
return tunnelType;
}
public void setTunnelType(Integer tunnelType) {
this.tunnelType = tunnelType;
}
public Integer getEncryptMode() {
return encryptMode;
}
public void setEncryptMode(Integer encryptMode) {
this.encryptMode = encryptMode;
}
}