文档库--文档库搜索
This commit is contained in:
+2
-5
@@ -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)){
|
||||
|
||||
Reference in New Issue
Block a user