ntc-ip日志查询(部分)
This commit is contained in:
@@ -11,23 +11,25 @@ public class BaseLogEntity<T> extends BaseEntity<T> {
|
||||
|
||||
private static final long serialVersionUID = 8321337584518281424L;
|
||||
|
||||
private Integer cfgId;
|
||||
private String foundTime; //发现时间,timestamp
|
||||
private String recvTime; //接收时间,timestamp
|
||||
private String protocol; //协议类型,从字典LOG_PROTOCOL取值
|
||||
private Integer addrType; //ip地址类型,从字典IP_TYPE取值
|
||||
private String serverIp; //服务端ip地址
|
||||
private String clientIp; //客户端ip地址
|
||||
private String serverPort; //服务端ip端口
|
||||
private String clientPort; //客户端ip端口
|
||||
private Integer serviceType; //配置表的serviceId
|
||||
private Integer entranceId; //出入口编号
|
||||
private Integer deviceId; //串联设备编号
|
||||
private Integer direction; //传输方向 0:域内->域外,1:域外->域内,从字典LOG_DIRECTION取值
|
||||
private Integer streamType; //流类型 0:c2s;1:s2c;2:double,从字典LOG_STREAMTYPE取值
|
||||
private String cljIp; //处理机IP
|
||||
private String nestAddrList; //嵌套地址列表
|
||||
private String userRegion; //用户自定义
|
||||
protected Integer cfgId;
|
||||
protected String foundTime; //发现时间,timestamp
|
||||
protected String recvTime; //接收时间,timestamp
|
||||
protected String protocol; //协议类型,从字典LOG_PROTOCOL取值
|
||||
protected Integer addrType; //ip地址类型,从字典IP_TYPE取值
|
||||
protected String serverIp; //服务端ip地址
|
||||
protected String clientIp; //客户端ip地址
|
||||
protected String serverPort; //服务端ip端口
|
||||
protected String clientPort; //客户端ip端口
|
||||
protected Integer serviceType; //配置表的serviceId
|
||||
protected Integer entranceId; //出入口编号
|
||||
protected Integer deviceId; //串联设备编号
|
||||
protected Integer direction; //传输方向 0:域内->域外,1:域外->域内,从字典LOG_DIRECTION取值
|
||||
protected Integer streamType; //流类型 0:c2s;1:s2c;2:double,从字典LOG_STREAMTYPE取值
|
||||
protected String cljIp; //处理机IP
|
||||
protected String nestAddrList; //嵌套地址列表
|
||||
protected String userRegion; //用户自定义
|
||||
|
||||
protected Integer functionId;
|
||||
|
||||
//自定义字段
|
||||
protected String seltype;//选中类型,页面搜索用
|
||||
@@ -35,6 +37,12 @@ public class BaseLogEntity<T> extends BaseEntity<T> {
|
||||
protected String searchFoundEndTime;//结束时间,格式同上
|
||||
|
||||
|
||||
public Integer getFunctionId() {
|
||||
return functionId;
|
||||
}
|
||||
public void setFunctionId(Integer functionId) {
|
||||
this.functionId = functionId;
|
||||
}
|
||||
public String getFoundTime() {
|
||||
return foundTime;
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user