mirror of
https://gitee.com/dromara/mayfly-go
synced 2025-11-02 15:30:25 +08:00
18 lines
316 B
Go
18 lines
316 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
|
|
|
|
MsgTmplId *uint64 `json:"msgTmplId" gorm:"-"` // 消息模板ID
|
|
}
|
|
|
|
func (p *Procdef) GetRelateId() uint64 {
|
|
return p.Id
|
|
}
|