mirror of
https://gitee.com/dromara/mayfly-go
synced 2025-11-03 07:50:25 +08:00
24 lines
649 B
Go
24 lines
649 B
Go
package persistence
|
|
|
|
import (
|
|
"mayfly-go/internal/flow/domain/entity"
|
|
"mayfly-go/internal/flow/domain/repository"
|
|
"mayfly-go/pkg/base"
|
|
"mayfly-go/pkg/model"
|
|
)
|
|
|
|
type procdefImpl struct {
|
|
base.RepoImpl[*entity.Procdef]
|
|
}
|
|
|
|
func newProcdefRepo() repository.Procdef {
|
|
return &procdefImpl{base.RepoImpl[*entity.Procdef]{M: new(entity.Procdef)}}
|
|
}
|
|
|
|
func (p *procdefImpl) GetPageList(condition *entity.Procdef, pageParam *model.PageParam, toEntity any, orderBy ...string) (*model.PageResult[any], error) {
|
|
qd := model.NewCond().
|
|
Like("name", condition.Name).
|
|
Like("def_key", condition.DefKey)
|
|
return p.PageByCondToAny(qd, pageParam, toEntity)
|
|
}
|