|
@@ -10,13 +10,13 @@ import org.springframework.stereotype.Component;
|
|
|
import javax.annotation.PostConstruct;
|
|
|
|
|
|
@Component
|
|
|
-public class ShorelineSchedule {
|
|
|
+public class CoverByDates {
|
|
|
//@Scheduled(cron = "0 0 1 * * ? ")
|
|
|
@Scheduled(cron = "0 0 0 * * ? ")
|
|
|
- public void shorelineUpdate() throws Exception {
|
|
|
+ public void doCoverByDates() throws Exception {
|
|
|
JSONObject jsonObject = new JSONObject();
|
|
|
- jsonObject.put("startDate","2023-01-01");
|
|
|
- jsonObject.put("endDate","2023-11-20");
|
|
|
+ jsonObject.put("startDate","2023-10-01");
|
|
|
+ jsonObject.put("endDate","2023-12-20");
|
|
|
HttpResponse httpResponse = HttpUtil.createPost("http://127.0.0.1:7071/ghjg/shipRecognition/coverByDates").body(jsonObject.toString()).executeAsync();
|
|
|
if (httpResponse.isOk()){
|
|
|
throw new Exception();
|