|
|
|
@@ -1619,14 +1619,14 @@ public class WxChartServiceImpl implements WxChartDataService { |
|
|
|
return (long) x.get("total"); |
|
|
|
})); |
|
|
|
|
|
|
|
Map<String, Long> verifyListMap = successlist.parallelStream().collect(Collectors.toMap(x -> { |
|
|
|
Map<String, Long> verifyListMap = verifyList.parallelStream().collect(Collectors.toMap(x -> { |
|
|
|
return x.get("time").toString(); |
|
|
|
}, x -> { |
|
|
|
return (long) x.get("total"); |
|
|
|
})); |
|
|
|
|
|
|
|
successMap.putAll(successListMap); |
|
|
|
verifyMap.putAll(verifyMap); |
|
|
|
verifyMap.putAll(verifyListMap); |
|
|
|
|
|
|
|
result.put("successList", successMap); |
|
|
|
result.put("verifyList", verifyMap); |
|
|
|
|