实现基础的IP地址阈值

This commit is contained in:
刘祥超
2021-09-12 20:21:27 +08:00
parent 699ed00e40
commit 3c8c4e6747
11 changed files with 1355 additions and 89 deletions

View File

@@ -3,11 +3,10 @@
package nodeconfigs
type NodeIPAddr struct {
Id int64 `json:"id"`
Name string `json:"name"`
Thresholds []*NodeValueThresholdConfig `json:"thresholds"`
IP string `json:"ip"`
IsOn bool `json:"isOn"`
IsUp bool `json:"isUp"`
CanAccess bool `json:"canAccess"`
Id int64 `json:"id"`
Name string `json:"name"`
IP string `json:"ip"`
IsOn bool `json:"isOn"`
IsUp bool `json:"isUp"`
CanAccess bool `json:"canAccess"`
}