mirror of
https://gitee.com/dromara/mayfly-go
synced 2025-11-14 05:10:24 +08:00
15 lines
375 B
Go
15 lines
375 B
Go
|
|
package repository
|
||
|
|
|
||
|
|
import (
|
||
|
|
"mayfly-go/internal/db/domain/entity"
|
||
|
|
"mayfly-go/pkg/base"
|
||
|
|
"mayfly-go/pkg/model"
|
||
|
|
)
|
||
|
|
|
||
|
|
type DbTransferFile interface {
|
||
|
|
base.Repo[*entity.DbTransferFile]
|
||
|
|
|
||
|
|
// 分页获取数据库实例信息列表
|
||
|
|
GetPageList(condition *entity.DbTransferFileQuery, pageParam *model.PageParam, toEntity any, orderBy ...string) (*model.PageResult[any], error)
|
||
|
|
}
|