新增命中静态阈值后填充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

@@ -9,7 +9,7 @@ import java.util.Objects;
* @author wlh
*/
public class DosDetectionThreshold implements Serializable {
private String profileId;
private long profileId;
private String attackType;
private ArrayList<String> serverIpList;
private String serverIpAddr;
@@ -20,11 +20,11 @@ public class DosDetectionThreshold implements Serializable {
private int vsysId;
private Integer[] superiorIds;
public String getProfileId() {
public long getProfileId() {
return profileId;
}
public void setProfileId(String profileId) {
public void setProfileId(long profileId) {
this.profileId = profileId;
}