From 73db6deec3c4c85c9f2bbbcde7a9af4f7b419ae5 Mon Sep 17 00:00:00 2001 From: LiuHao Date: Mon, 15 Apr 2024 10:40:47 +0800 Subject: [PATCH] =?UTF-8?q?fix=20=E4=BF=AE=E5=A4=8D=E7=B1=BB=E5=9E=8B?= =?UTF-8?q?=E7=BC=BA=E5=A4=B1?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/api/workflow/task/types.ts | 1 + src/api/workflow/workflowCommon/types.ts | 18 ++++++++++-------- 2 files changed, 11 insertions(+), 8 deletions(-) diff --git a/src/api/workflow/task/types.ts b/src/api/workflow/task/types.ts index 5b24aa0..0425a1a 100644 --- a/src/api/workflow/task/types.ts +++ b/src/api/workflow/task/types.ts @@ -40,6 +40,7 @@ export interface TaskVO extends BaseEntity { multiInstance?: boolean; businessKey?: string; wfNodeConfigVo?: NodeConfigVO; + wfDefinitionConfigVo?: DefinitionConfigVO; } export interface VariableVo { diff --git a/src/api/workflow/workflowCommon/types.ts b/src/api/workflow/workflowCommon/types.ts index be7325f..0f1ef1f 100644 --- a/src/api/workflow/workflowCommon/types.ts +++ b/src/api/workflow/workflowCommon/types.ts @@ -1,14 +1,16 @@ import { NodeConfigVO } from '@/api/workflow/nodeConfig/types'; +import { DefinitionConfigVO } from '@/api/workflow/definitionConfig/types'; export interface RouterJumpVo { - wfNodeConfigVo: NodeConfigVO; - businessKey: string; - taskId: string; - type: string; + wfNodeConfigVo: NodeConfigVO; + wfDefinitionConfigVo: DefinitionConfigVO; + businessKey: string; + taskId: string; + type: string; } export interface StartProcessBo { - businessKey: string | number; - tableName: string; - variables: any; -} \ No newline at end of file + businessKey: string | number; + tableName: string; + variables: any; +}