mirror of
https://gitee.com/dromara/mayfly-go
synced 2025-11-02 23:40:24 +08:00
16 lines
300 B
Go
16 lines
300 B
Go
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{}
|
|
}
|