فهرست منبع

增加分类调用

zoro 1 سال پیش
والد
کامیت
123d07f01c

+ 1 - 0
.idea/misc.xml

@@ -7,6 +7,7 @@
         <option value="$PROJECT_DIR$/pom.xml" />
       </list>
     </option>
+    <option name="workspaceImportForciblyTurnedOn" value="true" />
   </component>
   <component name="ProjectRootManager" version="2" languageLevel="JDK_1_8" default="true" project-jdk-name="1.8(64)" project-jdk-type="JavaSDK">
     <output url="file://$PROJECT_DIR$/out" />

+ 4 - 4
src/main/java/com/ghjg/shoreline/Schedule/ShorelineSchedule.java

@@ -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();

+ 23 - 0
src/main/java/com/ghjg/shoreline/Schedule/CoverByType.java

@@ -0,0 +1,23 @@
+package com.ghjg.shoreline.Schedule;
+
+
+import cn.hutool.http.HttpResponse;
+import cn.hutool.http.HttpUtil;
+import cn.hutool.json.JSONObject;
+import org.springframework.scheduling.annotation.Scheduled;
+import org.springframework.stereotype.Component;
+
+@Component
+public class CoverByType {
+    //@Scheduled(cron = "0 0 1 * * ? ")
+    @Scheduled(cron = "0 0 1 * * ? ")
+    public void doCoverByDates() throws Exception {
+        JSONObject jsonObject = new JSONObject();
+        jsonObject.put("startDate","2023-10-01");
+        jsonObject.put("endDate","2023-12-20");
+        HttpResponse httpResponse = HttpUtil.createPost("http://127.0.0.1:7071/ghjg/shipRecognition/coverByDatesAndType").body(jsonObject.toString()).executeAsync();
+        if (httpResponse.isOk()){
+            throw new Exception();
+        }
+    }
+}