1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
| import { FlowTaskVO } from '@/api/workflow/task/types';
|
| export interface FlowInstanceQuery extends PageQuery {
| category?: string | number;
| nodeName?: string;
| flowCode?: string;
| flowName?: string;
| createByIds?: string[] | number[];
| businessId?: string;
| }
|
| export interface FlowInstanceVO extends BaseEntity {
| id: string | number;
| definitionId: string;
| flowName: string;
| flowCode: string;
| version: string;
| businessId: string;
| activityStatus: number;
| tenantId: string;
| createTime: string;
| createBy: string;
| flowStatus: string;
| flowStatusName: string;
| flowTaskList: FlowTaskVO[];
| }
|
|