| | |
| | | if (CollectionUtils.isEmpty(configList)) { |
| | | return; |
| | | } |
| | | List<String> OutputIdList = new ArrayList<>(); |
| | | List<String> outputIdList = new ArrayList<>(); |
| | | configList.forEach(item -> { |
| | | OutputIdList.add(item.getOutId()); |
| | | outputIdList.add(item.getOutId()); |
| | | }); |
| | | configList.forEach(item -> { |
| | | PreDataJsonReqVO reqVO = new PreDataJsonReqVO(); |
| | | reqVO.setPredictTime(DateUtils.parse(messageJson.get("predictTime").toString(), DateUtils.FORMAT_YEAR_MONTH_DAY_HOUR_MINUTE_SECOND)); |
| | | reqVO.setOutputIdList(OutputIdList); |
| | | reqVO.setOutputIdList(outputIdList); |
| | | Map<String, List<Object[]>> preData = mcsApi.getPreDataCur(reqVO); |
| | | if (CollectionUtils.isEmpty(preData)) { |
| | | return; |