mirror of
https://gitee.com/dromara/mayfly-go
synced 2025-11-03 07:50:25 +08:00
16 lines
416 B
Go
16 lines
416 B
Go
package repository
|
|
|
|
import (
|
|
"mayfly-go/internal/machine/api/vo"
|
|
"mayfly-go/internal/machine/domain/entity"
|
|
"mayfly-go/pkg/base"
|
|
"mayfly-go/pkg/model"
|
|
)
|
|
|
|
type Machine interface {
|
|
base.Repo[*entity.Machine]
|
|
|
|
// 分页获取机器信息列表
|
|
GetMachineList(condition *entity.MachineQuery, pageParam *model.PageParam, toEntity *[]*vo.MachineVO, orderBy ...string) (*model.PageResult[*[]*vo.MachineVO], error)
|
|
}
|