mirror of
				https://gitee.com/dromara/mayfly-go
				synced 2025-11-04 08:20:25 +08:00 
			
		
		
		
	* feat: 优化数据库 BINLOG 同步机制 * feat: 删除数据库实例前需删除关联的数据库备份与恢复任务 * refactor: 重构数据库备份与恢复模块 * feat: 定时清理数据库备份历史和本地 Binlog 文件 * feat: 压缩数据库备份文件
		
			
				
	
	
		
			20 lines
		
	
	
		
			580 B
		
	
	
	
		
			Go
		
	
	
	
	
	
			
		
		
	
	
			20 lines
		
	
	
		
			580 B
		
	
	
	
		
			Go
		
	
	
	
	
	
package repository
 | 
						|
 | 
						|
import (
 | 
						|
	"mayfly-go/internal/db/domain/entity"
 | 
						|
	"mayfly-go/pkg/model"
 | 
						|
)
 | 
						|
 | 
						|
type DbBackup interface {
 | 
						|
	DbJob[*entity.DbBackup]
 | 
						|
 | 
						|
	ListToDo(jobs any) error
 | 
						|
	ListDbInstances(enabled bool, repeated bool, instanceIds *[]uint64) error
 | 
						|
	GetDbNamesWithoutBackup(instanceId uint64, dbNames []string) ([]string, error)
 | 
						|
 | 
						|
	// GetPageList 分页获取数据库任务列表
 | 
						|
	GetPageList(condition *entity.DbBackupQuery, pageParam *model.PageParam, toEntity any, orderBy ...string) (*model.PageResult[any], error)
 | 
						|
 | 
						|
	ListByCond(cond any, listModels any, cols ...string) error
 | 
						|
}
 |