| | |
| | | |
| | | String FINISH_TASK = API_PREFIX + "finishTask"; |
| | | |
| | | String INIT_ALGORITHM = API_PREFIX + "initAlgorithm"; |
| | | |
| | | // 实时测点输入 |
| | | String POINT_VALUE_INLET = API_PREFIX + "pointValueInlet"; |
| | | |
| | | /** |
| | | * 获取arima预测结果 |
| | | * @param type |
| | |
| | | List<AlarmGetVO> getAlarmDetail(@RequestBody AlarmGetVO alarmGet); |
| | | |
| | | @PostMapping(GET_ALARM_DETAIL_PAGE) |
| | | PageVO<AlarmGetVO> getAlarmDetailPage(@RequestParam("current") Integer current, @RequestParam("size") Integer size,@RequestBody AlarmGetVO alarmGet); |
| | | PageVO<AlarmGetVO> getAlarmDetailPage(@RequestParam("current") Integer current, |
| | | @RequestParam("size") Integer size, |
| | | @RequestBody AlarmGetVO alarmGet, |
| | | @RequestParam("ascs") String ascs, |
| | | @RequestParam("desc") String descs); |
| | | |
| | | @PostMapping(UPDATE_ALARM_GET) |
| | | Boolean updateAlarmGet(@RequestBody AlarmGetVO alarmGet); |
| | |
| | | |
| | | @GetMapping(FINISH_TASK) |
| | | Boolean finishTask(@RequestParam("taskId") String taskId); |
| | | |
| | | @PostMapping(INIT_ALGORITHM) |
| | | void initAlgorithm(@RequestBody List<String> resList); |
| | | |
| | | /** |
| | | * 实时测点测值输入 |
| | | * @param type 1:渗压,2:渗流,3:X位移,4:Y位移,5:Z位移 |
| | | */ |
| | | @GetMapping(POINT_VALUE_INLET) |
| | | void pointValueInlet(@RequestParam("type") String type); |
| | | } |