Files
mayfly-go/server/internal/flow/infra/persistence/procinst_task_candidate.go
2025-07-27 21:02:48 +08:00

16 lines
340 B
Go

package persistence
import (
"mayfly-go/internal/flow/domain/entity"
"mayfly-go/internal/flow/domain/repository"
"mayfly-go/pkg/base"
)
type procinstTaskCandidateImpl struct {
base.RepoImpl[*entity.ProcinstTaskCandidate]
}
func newProcinstTaskCandidateRepo() repository.ProcinstTaskCandidate {
return &procinstTaskCandidateImpl{}
}