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; +}