fix(log):日志检索模块,增加SSL、IPSEC、FTP、SSH所有服务接口,删除历史无用接口。
This commit is contained in:
39
src/main/java/com/nis/domain/restful/NtcPptpLog.java
Normal file
39
src/main/java/com/nis/domain/restful/NtcPptpLog.java
Normal file
@@ -0,0 +1,39 @@
|
||||
package com.nis.domain.restful;
|
||||
|
||||
import com.nis.domain.LogEntity;
|
||||
import com.wordnik.swagger.annotations.ApiModelProperty;
|
||||
|
||||
/**
|
||||
* Created by darnell on 2018/6/11.
|
||||
*/
|
||||
public class NtcPptpLog extends LogEntity {
|
||||
|
||||
private static final long serialVersionUID = -1558260429830428665L;
|
||||
|
||||
|
||||
@ApiModelProperty(value="通道类型", required=true)
|
||||
protected Integer tunnelType;
|
||||
@ApiModelProperty(value="加密方式", required=true)
|
||||
protected 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;
|
||||
}
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
}
|
||||
Reference in New Issue
Block a user