feat: 流程定义 历史

This commit is contained in:
dap
2024-12-20 09:18:43 +08:00
parent cf044cc679
commit 4e79182c7a
4 changed files with 160 additions and 12 deletions

View File

@@ -0,0 +1,19 @@
export interface ProcessDefinition {
id: string;
createTime: string;
updateTime: string;
tenantId: string;
delFlag: string;
flowCode: string;
flowName: string;
category: string;
categoryName: string;
version: string;
isPublish: number;
formCustom: string;
formPath: string;
activityStatus: number;
listenerType?: any;
listenerPath?: any;
ext?: any;
}