2023-12-27 22:59:20 +08:00
|
|
|
package entity
|
|
|
|
|
|
|
|
|
|
import (
|
2024-01-05 08:55:34 +08:00
|
|
|
"mayfly-go/pkg/utils/timex"
|
2023-12-27 22:59:20 +08:00
|
|
|
)
|
|
|
|
|
|
|
|
|
|
var _ DbTask = (*DbRestore)(nil)
|
|
|
|
|
|
|
|
|
|
// DbRestore 数据库恢复任务
|
|
|
|
|
type DbRestore struct {
|
2024-01-05 08:55:34 +08:00
|
|
|
*DbTaskBase
|
|
|
|
|
|
|
|
|
|
DbName string `json:"dbName"` // 数据库名
|
|
|
|
|
PointInTime timex.NullTime `json:"pointInTime"` // 指定数据库恢复的时间点
|
|
|
|
|
DbBackupId uint64 `json:"dbBackupId"` // 用于恢复的数据库恢复任务ID
|
|
|
|
|
DbBackupHistoryId uint64 `json:"dbBackupHistoryId"` // 用于恢复的数据库恢复历史ID
|
|
|
|
|
DbBackupHistoryName string `json:"dbBackupHistoryName"` // 数据库恢复历史名称
|
|
|
|
|
DbInstanceId uint64 `json:"dbInstanceId"` // 数据库实例ID
|
2023-12-27 22:59:20 +08:00
|
|
|
}
|
|
|
|
|
|
2024-01-05 08:55:34 +08:00
|
|
|
func (*DbRestore) MessageWithStatus(status TaskStatus) string {
|
|
|
|
|
var result string
|
|
|
|
|
switch status {
|
|
|
|
|
case TaskDelay:
|
|
|
|
|
result = "等待恢复数据库"
|
|
|
|
|
case TaskReady:
|
|
|
|
|
result = "准备恢复数据库"
|
|
|
|
|
case TaskReserved:
|
|
|
|
|
result = "数据库恢复中"
|
2023-12-27 22:59:20 +08:00
|
|
|
case TaskSuccess:
|
2024-01-05 08:55:34 +08:00
|
|
|
result = "数据库恢复成功"
|
2023-12-27 22:59:20 +08:00
|
|
|
case TaskFailed:
|
2024-01-05 08:55:34 +08:00
|
|
|
result = "数据库恢复失败"
|
2023-12-27 22:59:20 +08:00
|
|
|
}
|
2024-01-05 08:55:34 +08:00
|
|
|
return result
|
2023-12-27 22:59:20 +08:00
|
|
|
}
|