add:管理员修正数据功能-指派流程、修改审批人、加减签、审批记录、流程变更记录、未完成流程表单变更功能

This commit is contained in:
zhaojuncheng
2025-03-11 09:37:15 +08:00
parent 654204708e
commit f7d3f9823e
42 changed files with 7704 additions and 418 deletions

View File

@ -0,0 +1,54 @@
import { BasicPageParams, BasicFetchResult } from '/@/api/model/baseModel';
/**
* @description: ActHiTaskinst分页参数 模型
*/
export interface ActHiTaskinstPageParams extends BasicPageParams {
id: string;
taskDefKey: string;
procDefKey: string;
procDefId: string;
rootProcInstId: string;
procInstId: string;
executionId: string;
actInstId: string;
name: string;
}
/**
* @description: ActHiTaskinst分页返回值模型
*/
export interface ActHiTaskinstPageModel {
id: string;
taskDefKey: string;
procDefKey: string;
procDefId: string;
rootProcInstId: string;
procInstId: string;
executionId: string;
actInstId: string;
name: string;
}
0;
/**
* @description: ActHiTaskinst分页返回值结构
*/
export type ActHiTaskinstPageResult = BasicFetchResult<ActHiTaskinstPageModel>;