2024-03-15 09:01:51 +00:00
|
|
|
package persistence
|
|
|
|
|
|
|
|
|
|
import (
|
|
|
|
|
"mayfly-go/internal/db/domain/entity"
|
|
|
|
|
"mayfly-go/internal/db/domain/repository"
|
|
|
|
|
"mayfly-go/pkg/base"
|
|
|
|
|
"mayfly-go/pkg/model"
|
|
|
|
|
)
|
|
|
|
|
|
|
|
|
|
type dbTransferTaskRepoImpl struct {
|
|
|
|
|
base.RepoImpl[*entity.DbTransferTask]
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
func newDbTransferTaskRepo() repository.DbTransferTask {
|
|
|
|
|
return &dbTransferTaskRepoImpl{base.RepoImpl[*entity.DbTransferTask]{M: new(entity.DbTransferTask)}}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
// 分页获取数据库信息列表
|
|
|
|
|
func (d *dbTransferTaskRepoImpl) GetTaskList(condition *entity.DbTransferTaskQuery, pageParam *model.PageParam, toEntity any, orderBy ...string) (*model.PageResult[any], error) {
|
2024-08-22 00:43:39 +00:00
|
|
|
qd := model.NewCond().
|
2024-10-20 03:52:23 +00:00
|
|
|
Like("task_name", condition.Name).
|
|
|
|
|
Eq("status", condition.Status).
|
|
|
|
|
Eq("cron_able", condition.CronAble)
|
2024-03-15 09:01:51 +00:00
|
|
|
//Eq("status", condition.Status)
|
2024-05-05 14:53:30 +08:00
|
|
|
return d.PageByCondToAny(qd, pageParam, toEntity)
|
2024-03-15 09:01:51 +00:00
|
|
|
}
|