Files
mayfly-go/server/internal/flow/infra/persistence/procinst_task_candidate.go

16 lines
340 B
Go
Raw Normal View History

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{}
}