mirror of
https://gitee.com/dromara/mayfly-go
synced 2025-11-02 23:40:24 +08:00
* fix: 保存 LastResult 时截断字符串过长部分,以避免数据库报错 * refactor: 新增 entity.DbTaskBase 和 persistence.dbTaskBase, 用于实现数据库备份和恢复任务处理相关部分 * fix: aeskey变更后,解密密码出现数组越界访问错误 * fix: 时间属性为零值时,保存到 mysql 数据库报错 * refactor db.infrastructure.service.scheduler * feat: 实现立即备份功能 * refactor db.infrastructure.service.db_instance * refactor: 从数据库中获取数据库备份目录、mysql文件路径等配置信息 * fix: 数据库备份和恢复问题 * fix: 修改 .gitignore 文件,忽略数据库备份目录和数据库程序目录
36 lines
811 B
Go
36 lines
811 B
Go
package entity
|
|
|
|
import (
|
|
"mayfly-go/pkg/model"
|
|
"mayfly-go/pkg/utils/timex"
|
|
"time"
|
|
)
|
|
|
|
// DbBinlog 数据库备份任务
|
|
type DbBinlog struct {
|
|
model.Model
|
|
|
|
LastStatus TaskStatus // 最近一次执行状态
|
|
LastResult string // 最近一次执行结果
|
|
LastTime timex.NullTime // 最近一次执行时间
|
|
DbInstanceId uint64 `json:"dbInstanceId"` // 数据库实例ID
|
|
}
|
|
|
|
func NewDbBinlog(instanceId uint64) *DbBinlog {
|
|
binlogTask := &DbBinlog{}
|
|
binlogTask.Id = instanceId
|
|
binlogTask.DbInstanceId = instanceId
|
|
return binlogTask
|
|
}
|
|
|
|
// BinlogFile is the metadata of the MySQL binlog file.
|
|
type BinlogFile struct {
|
|
Name string
|
|
Size int64
|
|
|
|
// Sequence is parsed from Name and is for the sorting purpose.
|
|
Sequence int64
|
|
FirstEventTime time.Time
|
|
Downloaded bool
|
|
}
|