| | |
| | | package cn.gistack.nky.fegin; |
| | | |
| | | import cn.gistack.nky.entity.AlarmGet; |
| | | import cn.gistack.nky.vo.AlarmGetVO; |
| | | import org.apache.ibatis.annotations.Param; |
| | | import cn.gistack.nky.vo.PageVO; |
| | | import org.springframework.cloud.openfeign.FeignClient; |
| | | import org.springframework.web.bind.annotation.GetMapping; |
| | | import org.springframework.web.bind.annotation.PostMapping; |
| | |
| | | |
| | | //预警详情 |
| | | String GET_ALARM_DETAIL = API_PREFIX + "getAlarmDetail"; |
| | | //预警详情分页 |
| | | String GET_ALARM_DETAIL_PAGE = API_PREFIX + "getAlarmDetailPage"; |
| | | |
| | | |
| | | /** |
| | |
| | | |
| | | @PostMapping(GET_ALARM_DETAIL) |
| | | 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); |
| | | } |