ke
2024-07-19 08a962d2925baa255207fdf979e6fee794f1773b
skjcmanager/skjcmanager-service-api/skjcmanager-sm-api/src/main/java/cn/gistack/sm/sjztmd/feign/ISjztMdClient.java
@@ -4,6 +4,7 @@
import org.springframework.web.bind.annotation.GetMapping;
import org.springframework.web.bind.annotation.RequestParam;
import java.text.ParseException;
import java.util.List;
@FeignClient(
@@ -20,6 +21,8 @@
   //保存昨日报汛内容
   String SAVE_YESTERDAY_FLOOD_REPORT_CONTENT = API_PREFIX + "/saveYesterdayFloodReportContent";
   String GET_PROJECT_CHECK_STATUS = API_PREFIX + "/updateProjectCheckStatus";
   @GetMapping(GENERATE_DAY_REPORT_FLOOD)
   String generateDayReportFlood(@RequestParam("isShow") String isShow) throws Exception;
@@ -30,4 +33,7 @@
   @GetMapping(GET_RESERVOIR_RAINFALL_FORECAST)
   void getReservoirRainfallForecast(@RequestParam("dayIndexList") List<String> dayIndexList) throws Exception;
   @GetMapping(GET_PROJECT_CHECK_STATUS)
   void setGetProjectCheckStatus() throws Exception;
}