mirror of
https://github.com/TeaOSLab/EdgeAPI.git
synced 2025-11-15 09:10:24 +08:00
实现基础的IP地址阈值
This commit is contained in:
26
internal/db/models/node_ip_address_threshold_model.go
Normal file
26
internal/db/models/node_ip_address_threshold_model.go
Normal file
@@ -0,0 +1,26 @@
|
||||
package models
|
||||
|
||||
// NodeIPAddressThreshold IP地址阈值
|
||||
type NodeIPAddressThreshold struct {
|
||||
Id uint64 `field:"id"` // ID
|
||||
AddressId uint64 `field:"addressId"` // IP地址ID
|
||||
Items string `field:"items"` // 阈值条目
|
||||
Actions string `field:"actions"` // 动作
|
||||
NotifiedAt uint64 `field:"notifiedAt"` // 上次通知时间
|
||||
State uint8 `field:"state"` // 状态
|
||||
Order uint32 `field:"order"` // 排序
|
||||
}
|
||||
|
||||
type NodeIPAddressThresholdOperator struct {
|
||||
Id interface{} // ID
|
||||
AddressId interface{} // IP地址ID
|
||||
Items interface{} // 阈值条目
|
||||
Actions interface{} // 动作
|
||||
NotifiedAt interface{} // 上次通知时间
|
||||
State interface{} // 状态
|
||||
Order interface{} // 排序
|
||||
}
|
||||
|
||||
func NewNodeIPAddressThresholdOperator() *NodeIPAddressThresholdOperator {
|
||||
return &NodeIPAddressThresholdOperator{}
|
||||
}
|
||||
Reference in New Issue
Block a user