mirror of
https://gitee.com/ccnetcore/Yi
synced 2026-03-20 00:16:37 +08:00
20 lines
387 B
TypeScript
20 lines
387 B
TypeScript
export interface ProcessDefinition {
|
|
id: string;
|
|
creationTime: 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;
|
|
}
|