增加通联关系日志
ddos增加action检索条件
This commit is contained in:
43
src/main/java/com/nis/domain/log/NtcConnRecordLog.java
Normal file
43
src/main/java/com/nis/domain/log/NtcConnRecordLog.java
Normal file
@@ -0,0 +1,43 @@
|
||||
package com.nis.domain.log;
|
||||
|
||||
public class NtcConnRecordLog extends BaseLogEntity<NtcConnRecordLog> {
|
||||
|
||||
private static final long serialVersionUID = -4947912502754359817L;
|
||||
|
||||
protected Integer appLabel;
|
||||
protected String c2sPktNum;
|
||||
protected String s2cPktNum;
|
||||
protected String c2sByteNum;
|
||||
protected String s2cByteNum;
|
||||
public Integer getAppLabel() {
|
||||
return appLabel;
|
||||
}
|
||||
public void setAppLabel(Integer appLabel) {
|
||||
this.appLabel = appLabel;
|
||||
}
|
||||
public String getC2sPktNum() {
|
||||
return c2sPktNum;
|
||||
}
|
||||
public void setC2sPktNum(String c2sPktNum) {
|
||||
this.c2sPktNum = c2sPktNum;
|
||||
}
|
||||
public String getS2cPktNum() {
|
||||
return s2cPktNum;
|
||||
}
|
||||
public void setS2cPktNum(String s2cPktNum) {
|
||||
this.s2cPktNum = s2cPktNum;
|
||||
}
|
||||
public String getC2sByteNum() {
|
||||
return c2sByteNum;
|
||||
}
|
||||
public void setC2sByteNum(String c2sByteNum) {
|
||||
this.c2sByteNum = c2sByteNum;
|
||||
}
|
||||
public String getS2cByteNum() {
|
||||
return s2cByteNum;
|
||||
}
|
||||
public void setS2cByteNum(String s2cByteNum) {
|
||||
this.s2cByteNum = s2cByteNum;
|
||||
}
|
||||
|
||||
}
|
||||
Reference in New Issue
Block a user