fix: [BPM 工作流] bug 修复

This commit is contained in:
jason
2025-07-04 20:36:37 +08:00
parent 23a503d84b
commit 0dc0f72508
3 changed files with 11 additions and 6 deletions

View File

@@ -7,6 +7,7 @@ export namespace BpmProcessDefinitionApi {
export interface ProcessDefinition {
id: string;
version: number;
name: string;
deploymentTime: number;
suspensionState: number;
modelType: number;
@@ -15,6 +16,7 @@ export namespace BpmProcessDefinitionApi {
bpmnXml?: string;
simpleModel?: string;
formFields?: string[];
icon?: string;
}
}