新增命中静态阈值后填充Profile ID

This commit is contained in:
unknown
2023-04-03 17:35:36 +08:00
parent b56a2ec31e
commit d8b0a7637b
3 changed files with 25 additions and 11 deletions

View File

@@ -8,6 +8,7 @@ public class DosEventLog implements Serializable,Cloneable {
private int vsys_id;
private long start_time;
private long end_time;
private long profile_id;
private String attack_type;
private String severity;
private String conditions;
@@ -51,6 +52,14 @@ public class DosEventLog implements Serializable,Cloneable {
this.end_time = end_time;
}
public long getProfile_id() {
return profile_id;
}
public void setProfile_id(long profile_id) {
this.profile_id = profile_id;
}
public String getAttack_type() {
return attack_type;
}
@@ -138,6 +147,7 @@ public class DosEventLog implements Serializable,Cloneable {
", vsys_id=" + vsys_id +
", start_time=" + start_time +
", end_time=" + end_time +
", profile_id=" + profile_id +
", attack_type='" + attack_type + '\'' +
", severity='" + severity + '\'' +
", conditions='" + conditions + '\'' +