feat:【antd】【bpm】bpm/definition 的优化

This commit is contained in:
YunaiV
2025-10-24 20:11:35 +08:00
parent 9bb554f474
commit 0046e49ab0
3 changed files with 45 additions and 39 deletions

View File

@@ -1,5 +1,7 @@
import type { PageParam, PageResult } from '@vben/request';
import type { BpmModelApi } from '#/api/bpm/model';
import { requestClient } from '#/api/request';
export namespace BpmProcessDefinitionApi {
@@ -16,10 +18,14 @@ export namespace BpmProcessDefinitionApi {
modelType: number;
modelId: string;
formType?: number;
formId?: number;
formName?: string;
formCustomCreatePath?: string;
bpmnXml?: string;
simpleModel?: string;
formFields?: string[];
icon?: string;
startUsers?: BpmModelApi.UserInfo[];
}
}