2024-05-09 21:29:34 +08:00
|
|
|
package dto
|
|
|
|
|
|
|
|
|
|
import "mayfly-go/internal/flow/domain/entity"
|
|
|
|
|
|
|
|
|
|
type SaveProcdef struct {
|
|
|
|
|
Procdef *entity.Procdef
|
2025-04-15 21:42:31 +08:00
|
|
|
MsgTmplId uint64 // 消息模板id
|
2024-05-09 21:29:34 +08:00
|
|
|
CodePaths []string
|
|
|
|
|
}
|
2024-02-29 22:12:50 +08:00
|
|
|
|
2025-05-20 21:04:47 +08:00
|
|
|
type SaveFlowDef struct {
|
|
|
|
|
Id uint64
|
|
|
|
|
FlowDef *entity.FlowDef // 消息模板id
|
|
|
|
|
}
|
|
|
|
|
|
2024-02-29 22:12:50 +08:00
|
|
|
// 启动流程实例请求入参
|
2024-05-09 21:29:34 +08:00
|
|
|
type StarProc struct {
|
2024-02-29 22:12:50 +08:00
|
|
|
BizType string // 业务类型
|
|
|
|
|
BizKey string // 业务key
|
|
|
|
|
Remark string // 备注
|
2024-03-02 19:08:19 +08:00
|
|
|
BizForm string // 业务表单信息
|
2024-02-29 22:12:50 +08:00
|
|
|
}
|