readByTempProbeKey
This commit is contained in:
@@ -25,6 +25,7 @@ public class Probe {
|
||||
private String cidr;
|
||||
private Date authorizeDate;
|
||||
private Member authorizeMember;
|
||||
private int targetCount = 0;
|
||||
|
||||
|
||||
public Probe() {
|
||||
@@ -143,4 +144,16 @@ public class Probe {
|
||||
this.authorizeMember = authorizeMember;
|
||||
}
|
||||
|
||||
|
||||
@Column(name = "TARGET_COUNT", nullable = false)
|
||||
public int getTargetCount() {
|
||||
return targetCount;
|
||||
}
|
||||
|
||||
public void setTargetCount(int targetCount) {
|
||||
this.targetCount = targetCount;
|
||||
}
|
||||
|
||||
|
||||
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user