| | |
| | | |
| | | String GET_RESERVOIR_RAINFALL_FORECAST = API_PREFIX + "/getReservoirRainfallForecast"; |
| | | |
| | | //保存昨日报汛内容 |
| | | String SAVE_YESTERDAY_FLOOD_REPORT_CONTENT = API_PREFIX + "/saveYesterdayFloodReportContent"; |
| | | |
| | | @GetMapping(GENERATE_DAY_REPORT_FLOOD) |
| | | String generateDayReportFlood(@RequestParam("isShow") String isShow) throws Exception; |
| | | |
| | | @GetMapping(SAVE_YESTERDAY_FLOOD_REPORT_CONTENT) |
| | | String saveYesterdayFloodReportContent(@RequestParam("isShow") String isShow) throws Exception; |
| | | |
| | | |
| | | @GetMapping(GET_RESERVOIR_RAINFALL_FORECAST) |
| | | void getReservoirRainfallForecast(@RequestParam("dayIndexList") List<String> dayIndexList) throws Exception; |