mirror of
https://gitee.com/dromara/mayfly-go
synced 2025-11-02 23:40:24 +08:00
16 lines
250 B
Go
16 lines
250 B
Go
package vo
|
|
|
|
import (
|
|
"mayfly-go/internal/flow/domain/entity"
|
|
tagentity "mayfly-go/internal/tag/domain/entity"
|
|
)
|
|
|
|
type Procdef struct {
|
|
tagentity.RelateTags // 标签信息
|
|
entity.Procdef
|
|
}
|
|
|
|
func (p *Procdef) GetRelateId() uint64 {
|
|
return p.Id
|
|
}
|