mirror of
https://gitee.com/dromara/mayfly-go
synced 2025-11-02 07:20:24 +08:00
15 lines
332 B
Go
15 lines
332 B
Go
package repository
|
|
|
|
import (
|
|
"mayfly-go/internal/docker/domain/entity"
|
|
"mayfly-go/pkg/base"
|
|
"mayfly-go/pkg/model"
|
|
)
|
|
|
|
type Container interface {
|
|
base.Repo[*entity.Container]
|
|
|
|
// 分页获取容器配置列表
|
|
GetContainerPage(condition *entity.ContainerQuery, orderBy ...string) (*model.PageResult[*entity.Container], error)
|
|
}
|