flowable-devops/backend/debug-workflow.json
dengqichen d840effe9e 提交
2025-10-13 14:04:05 +08:00

40 lines
835 B
JSON

{
"id": "debug-test",
"name": "调试测试",
"description": "调试测试工作流",
"status": "DRAFT",
"definition": {
"id": "debug-test",
"name": "调试测试",
"version": "1.0",
"nodes": [
{
"id": "start",
"type": "start",
"name": "开始",
"position": { "x": 100, "y": 200 },
"config": {},
"inputMapping": {},
"outputSchema": { "type": "object" }
},
{
"id": "end",
"type": "end",
"name": "结束",
"position": { "x": 300, "y": 200 },
"config": {},
"inputMapping": {},
"outputSchema": { "type": "object" }
}
],
"edges": [
{
"id": "start-to-end",
"source": "start",
"target": "end",
"condition": null
}
]
}
}