54 lines
843 B
TypeScript
54 lines
843 B
TypeScript
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>; |