|
|
@@ -1,6 +1,7 @@
|
|
|
package com.uas.platform.b2c.common.search.rpc.service.Impl;
|
|
|
|
|
|
|
|
|
+import com.alibaba.fastjson.JSONArray;
|
|
|
import com.uas.platform.b2c.common.search.constant.SearchUrl;
|
|
|
import com.uas.platform.b2c.common.search.rpc.service.SearchService;
|
|
|
import com.uas.platform.b2c.core.config.SysConf;
|
|
|
@@ -215,9 +216,9 @@ public class SearchServiceImpl implements SearchService{
|
|
|
}else {
|
|
|
try {
|
|
|
List<String> reMapA = FastjsonUtils.fromJson(strA, List.class);
|
|
|
- List<String> reMapC = FastjsonUtils.fromJson(strC, List.class);
|
|
|
- List<String> reMapB = FastjsonUtils.fromJson(strB, List.class);
|
|
|
- List<String> reMapK = FastjsonUtils.fromJson(strK, List.class);
|
|
|
+ List<Object> reMapC = FastjsonUtils.fromJsonArray(strC);
|
|
|
+ List<Object> reMapB = FastjsonUtils.fromJsonArray(strB);
|
|
|
+ List<Object> reMapK = FastjsonUtils.fromJsonArray(strK);
|
|
|
map.clear();
|
|
|
map.put("all",reMapA);
|
|
|
map.put("kind",reMapK);
|