Revert "Ssl,Pptp,L2tp 日志查询"

This reverts commit c9dcdedd87
This commit is contained in:
wangxin
2018-06-19 18:31:57 -04:00
parent c9dcdedd87
commit 3652e9fecd
15 changed files with 8 additions and 1036 deletions

View File

@@ -1,30 +0,0 @@
package com.nis.domain.log;
public class NtcL2tpLog extends BaseLogEntity<NtcL2tpLog> {
private static final long serialVersionUID = -3547128625966615793L;
private Integer tunnelType;// 通道类型
private Integer encryptMode;// 加密方式
private String chapName; // 用户名称
public String getChapName() {
return chapName;
}
public void setChapName(String chapName) {
this.chapName = chapName;
}
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;
}
}