/** * @description: 删除流程参数 */ export interface DeleteProcessCategoryParamsModel { id?: string // 流程Id } /** * @description: 单条流程查询参数 */ export interface GetProcessCategoryByIdParamsModel { id?: string // 流程Id } /** * @description: 流程列表查询参数 */ export interface GetProcessCategoryListParamsModel { current?: number // 当前页 size?: number // 分页条数 name?: string // 流程名称 sortBy?: string // createDate,desc fileds?: string // 查询字段 parentId?: string // 上级分类id }