You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
28 lines
663 B
28 lines
663 B
import type { R } from '/#/axios'; |
|
import type { Page } from '/@/api/common/data/entity'; |
|
import type { TaskInfo } from './taskInfo'; |
|
|
|
export type HistoryTaskInfoParams = Page & HistoryTaskInfo; |
|
|
|
export interface HistoryTaskInfo { |
|
id: string; |
|
name: string; |
|
assignee: string; |
|
executionId: string; |
|
taskDefKey: string; |
|
processDefId: string; |
|
processInsId: string; |
|
processDefName: string; |
|
rollBack: boolean; |
|
comment: string; |
|
mesName: string; |
|
mesCode: string; |
|
mesLevel: string; |
|
createTime: string; |
|
endTime: string; |
|
taskInfo: TaskInfo; |
|
vars: Recordable; |
|
[key:string]: any; |
|
} |
|
|
|
export type HistoryTaskInfoResult = R<HistoryTaskInfo[]>;
|
|
|