文档库--文档库搜索

This commit is contained in:
zhn
2022-03-25 15:24:32 +08:00
parent 8825567403
commit 1df96241db
@@ -120,11 +120,8 @@ public class DocumentSearchServiceImpl implements IDocumentSearchService {
List<OnlCgformField> treeFieldList = fieldList.stream()
.filter(e -> FieldTypeEnum.TREE.getValue().equals(e.getFieldShowType()))
.collect(Collectors.toList());
String one = (String)map.get("mapOne");
String two = (String)map.get("mapTwo");
Map<String,Object> mapOne = JSON.parseObject(one);
Map<String,Object> mapTwo = JSON.parseObject(two);
Map<String, Object> mapOne = (Map<String, Object>) map.get("mapOne");
Map<String, Object> mapTwo = (Map<String, Object>) map.get("mapTwo");
JSONArray must = new JSONArray();
//处理首次查询条件
if(ObjectUtils.isNotEmpty(mapOne)){