feat:【ele】bpm task 的迁移

This commit is contained in:
YunaiV
2025-10-21 09:41:25 +08:00
parent ad00cf839c
commit 77ba1ee68f
12 changed files with 867 additions and 3 deletions

View File

@@ -6,7 +6,10 @@ export namespace BpmProcessDefinitionApi {
/** 流程定义 */
export interface ProcessDefinition {
id: string;
key?: string;
version: number;
name: string;
description: string;
deploymentTime: number;
suspensionState: number;
modelType: number;
@@ -15,6 +18,7 @@ export namespace BpmProcessDefinitionApi {
bpmnXml?: string;
simpleModel?: string;
formFields?: string[];
icon?: string;
}
}