|
@@ -177,7 +177,10 @@ public class ConceptFacade extends ConceptServiceImpl {
|
|
|
libraryInfoQe.eq("is_deleted", IsDeleteEnum.N.getKey());
|
|
|
libraryInfoQe.eq(getAllConceptVO.getIsConcept() != null,
|
|
|
"is_concept", getAllConceptVO.getIsConcept());
|
|
|
- libraryInfoQe.like("name", getAllConceptVO.getName());
|
|
|
+ libraryInfoQe.apply(
|
|
|
+ "UPPER(`name`) LIKE CONCAT('%',trim('"
|
|
|
+ + getAllConceptVO.getName().toUpperCase()
|
|
|
+ + "'),'%')");
|
|
|
List<LibraryInfo> libraryInfoList = libraryinfoFacade.list(libraryInfoQe);
|
|
|
if (ListUtil.isEmpty(libraryInfoList)) {
|
|
|
return getAllConceptDTOList;
|