【功能修复】工作流:model name 的模糊查询
This commit is contained in:
parent
75f6eceea7
commit
dc1da29452
|
@ -65,7 +65,7 @@ public class BpmModelServiceImpl implements BpmModelService {
|
|||
public List<Model> getModelList(String name) {
|
||||
ModelQuery modelQuery = repositoryService.createModelQuery();
|
||||
if (StrUtil.isNotEmpty(name)) {
|
||||
modelQuery.modelNameLike(name);
|
||||
modelQuery.modelNameLike("%" + name + "%");
|
||||
}
|
||||
return modelQuery.list();
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue