mirror of
				https://gitee.com/dromara/mayfly-go
				synced 2025-11-04 08:20:25 +08:00 
			
		
		
		
	
		
			
				
	
	
		
			31 lines
		
	
	
		
			860 B
		
	
	
	
		
			Go
		
	
	
	
	
	
			
		
		
	
	
			31 lines
		
	
	
		
			860 B
		
	
	
	
		
			Go
		
	
	
	
	
	
package persistence
 | 
						|
 | 
						|
import (
 | 
						|
	"mayfly-go/internal/machine/domain/entity"
 | 
						|
	"mayfly-go/internal/machine/domain/repository"
 | 
						|
	"mayfly-go/pkg/base"
 | 
						|
	"mayfly-go/pkg/model"
 | 
						|
)
 | 
						|
 | 
						|
type machineRepoImpl struct {
 | 
						|
	base.RepoImpl[*entity.Machine]
 | 
						|
}
 | 
						|
 | 
						|
func newMachineRepo() repository.Machine {
 | 
						|
	return &machineRepoImpl{base.RepoImpl[*entity.Machine]{M: new(entity.Machine)}}
 | 
						|
}
 | 
						|
 | 
						|
// 分页获取机器信息列表
 | 
						|
func (m *machineRepoImpl) GetMachineList(condition *entity.MachineQuery, pageParam *model.PageParam, toEntity any, orderBy ...string) (*model.PageResult[any], error) {
 | 
						|
	qd := model.NewCond().
 | 
						|
		Eq("id", condition.Id).
 | 
						|
		Eq("status", condition.Status).
 | 
						|
		Like("ip", condition.Ip).
 | 
						|
		Like("name", condition.Name).
 | 
						|
		In("code", condition.Codes).
 | 
						|
		Eq("code", condition.Code).
 | 
						|
		Eq("protocol", condition.Protocol)
 | 
						|
 | 
						|
	return m.PageByCondToAny(qd, pageParam, toEntity)
 | 
						|
}
 |