2021-01-17 16:48:00 +08:00
|
|
|
|
package models
|
|
|
|
|
|
|
2021-08-08 15:47:48 +08:00
|
|
|
|
// NodeTask 节点同步任务
|
2021-01-17 16:48:00 +08:00
|
|
|
|
type NodeTask struct {
|
|
|
|
|
|
Id uint64 `field:"id"` // ID
|
2021-08-08 15:47:48 +08:00
|
|
|
|
Role string `field:"role"` // 节点角色
|
2021-01-17 16:48:00 +08:00
|
|
|
|
NodeId uint32 `field:"nodeId"` // 节点ID
|
|
|
|
|
|
ClusterId uint32 `field:"clusterId"` // 集群ID
|
|
|
|
|
|
Type string `field:"type"` // 任务类型
|
|
|
|
|
|
UniqueId string `field:"uniqueId"` // 唯一ID:nodeId@type
|
|
|
|
|
|
UpdatedAt uint64 `field:"updatedAt"` // 修改时间
|
|
|
|
|
|
IsDone uint8 `field:"isDone"` // 是否已完成
|
|
|
|
|
|
IsOk uint8 `field:"isOk"` // 是否已完成
|
|
|
|
|
|
Error string `field:"error"` // 错误信息
|
|
|
|
|
|
IsNotified uint8 `field:"isNotified"` // 是否已通知更新
|
2021-11-11 14:16:42 +08:00
|
|
|
|
Version uint64 `field:"version"` // 版本
|
2021-01-17 16:48:00 +08:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
type NodeTaskOperator struct {
|
|
|
|
|
|
Id interface{} // ID
|
2021-08-08 15:47:48 +08:00
|
|
|
|
Role interface{} // 节点角色
|
2021-01-17 16:48:00 +08:00
|
|
|
|
NodeId interface{} // 节点ID
|
|
|
|
|
|
ClusterId interface{} // 集群ID
|
|
|
|
|
|
Type interface{} // 任务类型
|
|
|
|
|
|
UniqueId interface{} // 唯一ID:nodeId@type
|
|
|
|
|
|
UpdatedAt interface{} // 修改时间
|
|
|
|
|
|
IsDone interface{} // 是否已完成
|
|
|
|
|
|
IsOk interface{} // 是否已完成
|
|
|
|
|
|
Error interface{} // 错误信息
|
|
|
|
|
|
IsNotified interface{} // 是否已通知更新
|
2021-11-11 14:16:42 +08:00
|
|
|
|
Version interface{} // 版本
|
2021-01-17 16:48:00 +08:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
func NewNodeTaskOperator() *NodeTaskOperator {
|
|
|
|
|
|
return &NodeTaskOperator{}
|
|
|
|
|
|
}
|