| | |
| | | dataView.setPreDataN(mmItemResultService.getData(outPut.getId(), predictTime, endTime, timeFormat)); |
| | | dataView.setPreDataL(mmItemResultLastPointService.getData(outPut.getId(), startTime, endTime, timeFormat)); |
| | | break; |
| | | case CL: |
| | | dataView.setPreDataN(mmItemResultService.getData(outPut.getId(), predictTime, endTime, timeFormat)); |
| | | dataView.setPreDataL(mmItemResultLastPointService.getData(outPut.getId(), startTime, endTime, timeFormat)); |
| | | break; |
| | | default: |
| | | break; |
| | | } |
| | |
| | | |
| | | String alarmObj = chartParams.get(CommonConstant.ALARM_OBJ); |
| | | if (StringUtils.isNotBlank(alarmObj)) { |
| | | List<AlarmMessageRespDTO> alarmList = ConvertUtils.sourceToTarget(mmPredictAlarmMessageService.getList(alarmObj, predictTime), AlarmMessageRespDTO.class); |
| | | String alarmTitle = chartParams.get(CommonConstant.ALARM_TITLE); |
| | | List<AlarmMessageRespDTO> alarmList = ConvertUtils.sourceToTarget(mmPredictAlarmMessageService.getList(alarmObj, predictTime, alarmTitle), AlarmMessageRespDTO.class); |
| | | dataView.setAlarmList(alarmList); |
| | | if (CollectionUtils.isEmpty(alarmList)) { |
| | | dataView.setAlarmMessage("暂无预警信息"); |
| | |
| | | return true; |
| | | } |
| | | |
| | | @Override |
| | | public MmItemOutputDTO getItemOutputByItemid(String itemid, String resultstr, String resultIndex) { |
| | | return ConvertUtils.sourceToTarget(mmItemOutputService.getByItemid(itemid,resultstr,resultIndex),MmItemOutputDTO.class); |
| | | } |
| | | |
| | | @Override |
| | | public List<Object[]> getItemResult(String outputid, Date startTime, Date endTime, String timeFormat) { |
| | | return mmItemResultService.getData(outputid,startTime,endTime,timeFormat); |
| | | } |
| | | |
| | | @Override |
| | | public PredictItemVO getPredictItemByItemNo(String itemNo) { |
| | | return ConvertUtils.sourceToTarget(mmPredictItemService.getItemByItemNo(itemNo),PredictItemVO.class); |
| | | } |
| | | |
| | | @Override |
| | | public List<Object[]> getItemResultLastPoint(String outputid, Date startTime, Date endTime, String timeFormat) { |
| | | return mmItemResultLastPointService.getData(outputid,startTime,endTime,timeFormat); |
| | | } |
| | | |
| | | private Date[] calResultTime(ItemVO predictItem, Date startTimeReq, Date endTimeReq, int lengthLeft, int lengthRight) { |
| | | Date[] result = new Date[3]; |
| | | Date predictTime = predictItem.getLastTime(); |