|
@@ -313,8 +313,8 @@ public class ConceptFacade extends ConceptServiceImpl {
|
|
|
QueryWrapper<LibraryInfo> libraryInfoQe = new QueryWrapper<>();
|
|
|
libraryInfoQe.eq("is_deleted", IsDeleteEnum.N.getKey());
|
|
|
libraryInfoQe.apply(
|
|
|
- "LOWER(`name`) LIKE CONCAT('%',trim('"
|
|
|
- + getAllInformationVO.getLibName().toLowerCase()
|
|
|
+ "UPPER(`name`) LIKE CONCAT('%',trim('"
|
|
|
+ + getAllInformationVO.getLibName().toUpperCase()
|
|
|
+ "'),'%')");
|
|
|
libraryInfoQe.eq(StringUtil.isNotBlank(getAllInformationVO.getType()),
|
|
|
"type_id", LexiconTypeEnum.getKey(getAllInformationVO.getType()));
|
|
@@ -327,8 +327,8 @@ public class ConceptFacade extends ConceptServiceImpl {
|
|
|
}
|
|
|
}
|
|
|
conceptQe.apply(StringUtil.isNotBlank(getAllInformationVO.getName()),
|
|
|
- "LOWER(lib_name) LIKE CONCAT('%',trim('"
|
|
|
- + getAllInformationVO.getName().toLowerCase()
|
|
|
+ "UPPER(lib_name) LIKE CONCAT('%',trim('"
|
|
|
+ + getAllInformationVO.getName().toUpperCase()
|
|
|
+ "'),'%')");
|
|
|
conceptQe.eq(StringUtil.isNotBlank(getAllInformationVO.getType()),
|
|
|
"lib_type", LexiconTypeEnum.getKey(getAllInformationVO.getType()));
|