| | |
| | | import java.text.SimpleDateFormat; |
| | | import java.util.Date; |
| | | import java.util.List; |
| | | |
| | | import static com.iailab.framework.apilog.core.enums.OperateTypeEnum.EXPORT; |
| | | |
| | | /** |
| | |
| | | |
| | | @GetMapping("/predict-data/exportValue") |
| | | @Operation(summary = "导出预测数据") |
| | | @ApiAccessLog(operateType = EXPORT) |
| | | public void exportPointValue(@RequestParam("itemId") String itemId, |
| | | @RequestParam("startTime") String startTime, |
| | | @RequestParam("endTime") String endTime, |
| | |
| | | ex.printStackTrace(); |
| | | } |
| | | } |
| | | |
| | | @GetMapping("/alarm-message/last-one") |
| | | @Operation(summary = "根据监控对象获取最新预警信息") |
| | | public CommonResult<AlarmMessageRespDTO> getLastAlarmMessage(HttpServletResponse response, HttpServletRequest |
| | | request, @RequestParam("alarmObj") String alarmObj) { |
| | | AlarmMessageRespDTO data = mcsApi.getLastAlarmMessage(alarmObj); |
| | | return CommonResult.success(data); |
| | | } |
| | | |
| | | @GetMapping("/schedule-suggest/last-limit") |
| | | @Operation(summary = "根据监控对象获取最新预警信息") |
| | | public CommonResult<List<ScheduleSuggestRespDTO>> getLastLimitScheduleSuggest(HttpServletResponse response, HttpServletRequest |
| | | request, @RequestParam("scheduleObj") String scheduleObj, @RequestParam("limit") Integer limit) { |
| | | List<ScheduleSuggestRespDTO> data = mcsApi.getLastLimitScheduleSuggest(scheduleObj, limit); |
| | | return CommonResult.success(data); |
| | | } |
| | | } |