feat: 新建采购申请、个人中心菜单
This commit is contained in:
129
apps/web-antd/src/api/property/personalCenter/workflowDefinition/model.d.ts
vendored
Normal file
129
apps/web-antd/src/api/property/personalCenter/workflowDefinition/model.d.ts
vendored
Normal file
@@ -0,0 +1,129 @@
|
||||
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;
|
||||
}
|
Reference in New Issue
Block a user