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

17 lines
321 B
Go
Raw Normal View History

package dto
import "mayfly-go/internal/flow/domain/entity"
type SaveProcdef struct {
Procdef *entity.Procdef
CodePaths []string
}
// 启动流程实例请求入参
type StarProc struct {
BizType string // 业务类型
BizKey string // 业务key
Remark string // 备注
2024-03-02 19:08:19 +08:00
BizForm string // 业务表单信息
}