Files
admin-vben5/apps/web-antd/src/api/property/personalCenter/workflowDefinition/model.d.ts

130 lines
1.7 KiB
TypeScript
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

import type { PageQuery, BaseEntity } from '#/api/common';
export interface WorkflowDefinitionVO {
/**
* 主键id
*/
id: string | number;
/**
* 流程编号
*/
code: string;
/**
* 流程名称
*/
name: string;
/**
* 流程状态(0审批不通过1审批通过2审批中3已取消)
*/
status: number;
/**
* 当前审批人
*/
currentApprover: string;
/**
* 审批建议
*/
workflowSuggestion: string;
/**
* 结束时间
*/
endTime: string;
/**
* 搜索值
*/
searchValue: string;
}
export interface WorkflowDefinitionForm extends BaseEntity {
/**
* 主键id
*/
id?: string | number;
/**
* 流程编号
*/
code?: string;
/**
* 流程名称
*/
name?: string;
/**
* 流程状态(0审批不通过1审批通过2审批中3已取消)
*/
status?: number;
/**
* 当前审批人
*/
currentApprover?: string;
/**
* 审批建议
*/
workflowSuggestion?: string;
/**
* 结束时间
*/
endTime?: string;
/**
* 搜索值
*/
searchValue?: string;
}
export interface WorkflowDefinitionQuery extends PageQuery {
/**
* 流程编号
*/
code?: string;
/**
* 流程名称
*/
name?: string;
/**
* 流程状态(0审批不通过1审批通过2审批中3已取消)
*/
status?: number;
/**
* 当前审批人
*/
currentApprover?: string;
/**
* 审批建议
*/
workflowSuggestion?: string;
/**
* 结束时间
*/
endTime?: string;
/**
* 搜索值
*/
searchValue?: string;
/**
* 日期范围参数
*/
params?: any;
}