新增工作流触发类型和事件类型支持

This commit is contained in:
jxxghp
2025-07-22 20:58:55 +08:00
parent 58acde2292
commit 1f7f9ce9db
7 changed files with 215 additions and 13 deletions

View File

@@ -164,6 +164,10 @@ export interface WorkflowShare {
description?: string
// 定时器
timer?: string
// 触发类型timer-定时触发 event-事件触发 manual-手动触发
trigger_type?: string
// 事件类型当trigger_type为event时使用
event_type?: string
// 动作列表
actions?: any[]
// 动作流
@@ -1328,6 +1332,10 @@ export interface Workflow {
description?: string
// 定时器
timer?: string
// 触发类型timer-定时触发 event-事件触发 manual-手动触发
trigger_type?: string
// 事件类型当trigger_type为event时使用
event_type?: string
// 状态
state?: string
// 当前执行动作