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

16 lines
300 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 hisProcinstOpImpl struct {
base.RepoImpl[*entity.HisProcinstOp]
}
func newHisProcinstOpRepo() repository.HisProcinstOp {
return &hisProcinstOpImpl{}
}