if(StringUtil.isNotEmpty(processName)){
processDefinitionQuery.processDefinitionNameLike(processName);
}
String processId = StringUtil.getString(params.get("queryProcessId"));
if(StringUtil.isNotEmpty(processId)){
processDefinitionQuery.processDefinitionKeyLike(processId);
}
String processCategory = StringUtil.getString(params.get("queryType"));
if(StringUtil.isNotEmpty(processCategory)){
processDefinitionQuery.processDefinitionCategoryLike(processCategory);
}