mirror of
https://gitee.com/dromara/mayfly-go
synced 2025-11-03 07:50:25 +08:00
* refactor dbScheduler * fix: 按团队名称检索团队 * feat: 创建数据库资源时支持全选数据库 * refactor dbScheduler * fix: 修复数据库备份与恢复问题
13 lines
186 B
Go
13 lines
186 B
Go
package repository
|
|
|
|
import (
|
|
"context"
|
|
"mayfly-go/internal/db/domain/entity"
|
|
)
|
|
|
|
type DbBinlog interface {
|
|
DbJob
|
|
|
|
AddJobIfNotExists(ctx context.Context, job *entity.DbBinlog) error
|
|
}
|