| | |
| | | * |
| | | * @author yunlongn |
| | | * @author ZJQ |
| | | * @author 芋道源码 |
| | | * @author 超级管理员 |
| | | */ |
| | | @Service |
| | | @Validated |
| | |
| | | |
| | | @Override |
| | | public List<ProcessDefinition> getProcessDefinitionList(Set<String> ids) { |
| | | if (CollUtil.isEmpty(ids)) { |
| | | return emptyList(); |
| | | } |
| | | return repositoryService.createProcessDefinitionQuery().processDefinitionIds(ids).list(); |
| | | } |
| | | |
| | |
| | | return query.list(); |
| | | } |
| | | |
| | | @Override |
| | | public List<BpmProcessDefinitionInfoDO> getProcessDefinitionInfoListByCategory(String category) { |
| | | return processDefinitionMapper.selectListByCategory(category); |
| | | } |
| | | |
| | | } |