2021-08-18 09:24:18 +08:00
|
|
|
|
package models
|
|
|
|
|
|
|
|
|
|
|
|
// NodeIPAddressLog IP状态变更日志
|
|
|
|
|
|
type NodeIPAddressLog struct {
|
|
|
|
|
|
Id uint64 `field:"id"` // ID
|
|
|
|
|
|
AddressId uint64 `field:"addressId"` // 地址ID
|
|
|
|
|
|
AdminId uint32 `field:"adminId"` // 管理员ID
|
|
|
|
|
|
Description string `field:"description"` // 描述
|
|
|
|
|
|
CreatedAt uint64 `field:"createdAt"` // 操作时间
|
2021-08-31 17:24:52 +08:00
|
|
|
|
IsUp uint8 `field:"isUp"` // 是否在线
|
2022-03-22 21:45:07 +08:00
|
|
|
|
IsOn bool `field:"isOn"` // 是否启用
|
2021-08-31 17:24:52 +08:00
|
|
|
|
CanAccess uint8 `field:"canAccess"` // 是否可访问
|
2021-08-18 09:24:18 +08:00
|
|
|
|
Day string `field:"day"` // YYYYMMDD,用来清理
|
2021-09-13 10:51:05 +08:00
|
|
|
|
BackupIP string `field:"backupIP"` // 备用IP
|
2021-08-18 09:24:18 +08:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
type NodeIPAddressLogOperator struct {
|
|
|
|
|
|
Id interface{} // ID
|
|
|
|
|
|
AddressId interface{} // 地址ID
|
|
|
|
|
|
AdminId interface{} // 管理员ID
|
|
|
|
|
|
Description interface{} // 描述
|
|
|
|
|
|
CreatedAt interface{} // 操作时间
|
2021-08-31 17:24:52 +08:00
|
|
|
|
IsUp interface{} // 是否在线
|
|
|
|
|
|
IsOn interface{} // 是否启用
|
|
|
|
|
|
CanAccess interface{} // 是否可访问
|
2021-08-18 09:24:18 +08:00
|
|
|
|
Day interface{} // YYYYMMDD,用来清理
|
2021-09-13 10:51:05 +08:00
|
|
|
|
BackupIP interface{} // 备用IP
|
2021-08-18 09:24:18 +08:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
func NewNodeIPAddressLogOperator() *NodeIPAddressLogOperator {
|
|
|
|
|
|
return &NodeIPAddressLogOperator{}
|
|
|
|
|
|
}
|