2021-05-08 18:00:33 +08:00
|
|
|
package persistence
|
|
|
|
|
|
|
|
|
|
import (
|
2022-09-09 18:26:08 +08:00
|
|
|
"mayfly-go/internal/machine/domain/entity"
|
|
|
|
|
"mayfly-go/internal/machine/domain/repository"
|
2023-10-26 17:15:49 +08:00
|
|
|
"mayfly-go/pkg/base"
|
2022-06-02 17:41:11 +08:00
|
|
|
"mayfly-go/pkg/model"
|
2021-05-08 18:00:33 +08:00
|
|
|
)
|
|
|
|
|
|
2023-10-26 17:15:49 +08:00
|
|
|
type machineRepoImpl struct {
|
|
|
|
|
base.RepoImpl[*entity.Machine]
|
|
|
|
|
}
|
2021-05-08 18:00:33 +08:00
|
|
|
|
2022-09-09 18:26:08 +08:00
|
|
|
func newMachineRepo() repository.Machine {
|
2023-10-26 17:15:49 +08:00
|
|
|
return &machineRepoImpl{base.RepoImpl[*entity.Machine]{M: new(entity.Machine)}}
|
2022-09-09 18:26:08 +08:00
|
|
|
}
|
2021-05-08 18:00:33 +08:00
|
|
|
|
|
|
|
|
// 分页获取机器信息列表
|
2024-04-28 23:45:57 +08:00
|
|
|
func (m *machineRepoImpl) GetMachineList(condition *entity.MachineQuery, pageParam *model.PageParam, toEntity any, orderBy ...string) (*model.PageResult[any], error) {
|
|
|
|
|
qd := model.NewCond().
|
2024-05-16 17:26:32 +08:00
|
|
|
Eq("id", condition.Id).
|
2023-11-07 21:05:21 +08:00
|
|
|
Eq("status", condition.Status).
|
2023-07-01 14:34:42 +08:00
|
|
|
Like("ip", condition.Ip).
|
|
|
|
|
Like("name", condition.Name).
|
2024-04-06 18:19:17 +08:00
|
|
|
In("code", condition.Codes).
|
2024-05-21 12:34:26 +08:00
|
|
|
Eq("code", condition.Code).
|
2024-04-29 12:50:49 +08:00
|
|
|
Eq("protocol", condition.Protocol)
|
2023-07-20 22:41:13 +08:00
|
|
|
|
2024-05-05 14:53:30 +08:00
|
|
|
return m.PageByCondToAny(qd, pageParam, toEntity)
|
2021-05-08 18:00:33 +08:00
|
|
|
}
|