Files
mayfly-go/server/internal/flow/application/dto/dto.go

23 lines
490 B
Go
Raw Blame History

This file contains ambiguous Unicode characters
This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.
package dto
import "mayfly-go/internal/flow/domain/entity"
type SaveProcdef struct {
Procdef *entity.Procdef
MsgTmplId uint64 // 消息模板id
CodePaths []string
}
type SaveFlowDef struct {
Id uint64
FlowDef *entity.FlowDef // 消息模板id
}
// 启动流程实例请求入参
type StarProc struct {
BizType string // 业务类型
BizKey string // 业务key若已存在则为修改重新提交流程
Remark string // 备注
BizForm string // 业务表单信息
}