|
@@ -425,7 +425,9 @@ public class AlgorithmService implements IAlgorithmService {
|
|
|
|
|
|
headerNames.forEach(header -> {
|
|
|
JSONArray jsonArray = res.getJSONArray(header);
|
|
|
- this.convert(jsonArray);
|
|
|
+ if (StrUtil.equals("时间",header)) {
|
|
|
+ return;
|
|
|
+ }
|
|
|
Map<String, Object> map = new HashMap<>();
|
|
|
StatisticsCalculator.STATISTICS_MAP.forEach((k, v) -> {
|
|
|
map.put(k, StatisticsCalculator.calculateStatistic(k, this.convert(jsonArray)));
|