/** * @description: 删除流程参数 */ export interface DeleteProcessParamsModel { id?: string // 流程Id } /** * @description: 单条流程查询参数 */ export interface GetProcessByIdParamsModel { id?: string // 流程Id } /** * @description: 流程列表查询参数 */ export interface GetProcessListParamsModel { current?: number // 当前页 size?: number // 分页条数 name?: string // 流程名称 sortBy?: string // createDate,desc fileds?: string // 查询字段 categoryId?: string // processKey?: string // 流程标识 } /** * @description: 查询可发起流程参数 */ export interface QueryInitiatedProcessParamsModel { name?: string // 流程名称 processKey?: string // 流程标识 } /** * @description: 校验流程key是否存在参数 */ export interface CheckProcessKeyParamsModel { processKey?: string // 流程标识 } /** * @description: 导出流程参数 */ export interface ProcessDesignDataExportParamsModel { applicationId?: string // 应用Id model?: number // 导入方式,0不覆盖;1覆盖 默认0 }