|
|
@@ -318,9 +318,9 @@ public class SearcherController {
|
|
|
PageInfo pageInfo = new PageInfo(params);
|
|
|
Page<StoreIn> stores = storeService.pageStoresByTypesAndKeyword(pageInfo, types, keyword);
|
|
|
List<Map<String, Object>> result = new ArrayList<>();
|
|
|
- Map<String, Object> a = new HashedMap();
|
|
|
- a.put("stores",stores);
|
|
|
- result.add(a);
|
|
|
+ Map<String, Object> storesMap = new HashedMap();
|
|
|
+ storesMap.put("stores",stores);
|
|
|
+ result.add(storesMap);
|
|
|
Map<String, Object> b = new HashedMap();
|
|
|
ArrayList<String> flag = new ArrayList<>();
|
|
|
ArrayList<Object> flag2 = new ArrayList<>();
|