From a127d6f905fa2a3a47e2dd872ca24db70c158dd2 Mon Sep 17 00:00:00 2001
From: nidapeng <jp@doumee.com>
Date: 星期五, 08 三月 2024 15:42:32 +0800
Subject: [PATCH] 更改头部

---
 server/dmvisit_admin/src/main/java/com/doumee/task/ScheduleTool.java |   19 +++++++++++++++----
 1 files changed, 15 insertions(+), 4 deletions(-)

diff --git a/server/dmvisit_admin/src/main/java/com/doumee/task/ScheduleTool.java b/server/dmvisit_admin/src/main/java/com/doumee/task/ScheduleTool.java
index ea2897d..7fa2107 100644
--- a/server/dmvisit_admin/src/main/java/com/doumee/task/ScheduleTool.java
+++ b/server/dmvisit_admin/src/main/java/com/doumee/task/ScheduleTool.java
@@ -8,6 +8,7 @@
 import com.doumee.service.business.MemberService;
 import com.doumee.service.business.impl.hksync.HkSyncEmpowerServiceImpl;
 import com.doumee.service.business.impl.hksync.HkSyncImgServiceImpl;
+import com.doumee.service.business.impl.hksync.HkSyncParkServiceImpl;
 import com.doumee.service.business.impl.hksync.ferp.HkSyncOrgUserToHKServiceImpl;
 import com.doumee.service.business.impl.hksync.HkSyncVisitServiceImpl;
 import com.doumee.service.business.impl.hksync.fhk.HkSyncVehicleFromHKServiceImpl;
@@ -26,9 +27,11 @@
  * https://www.bejson.com/othertools/cron/  cron 琛ㄨ揪寮忕敓鎴愬湴鍧�
  */
 //@Component
-@EnableScheduling
+//@EnableScheduling
 public class ScheduleTool {
 
+    @Autowired
+    private HkSyncParkServiceImpl hkSyncParkService;
     @Autowired
     private HkSyncImgServiceImpl hkSyncImgService;
     @Autowired
@@ -61,7 +64,7 @@
      * 姣忓垎閽熸媺鍙栦竴娆′粖鏃ョ殑璁垮棰勭害鏁版嵁
      * @throws Exception
      */
-    @Scheduled(fixedDelay= 60*1000)
+    @Scheduled(fixedDelay= 30*1000)
     public void syncVistAppointData() throws Exception {
         if(Constants.DEALING_FROM_HK_VISIT){
             return ;
@@ -71,10 +74,18 @@
             hkSyncVisitFromHKService.syncVistAppointData(new Date());
             Constants.DEALING_FROM_HK_VISIT =false;
         }catch (Exception e){
-            throw  new BusinessException(ResponseStatus.SERVER_ERROR.getCode(), "瀵逛笉璧凤紝娴峰悍鍚屾鏁版嵁澶辫触~");
+//            throw  new BusinessException(ResponseStatus.SERVER_ERROR.getCode(), "瀵逛笉璧凤紝娴峰悍鍚屾鏁版嵁澶辫触~");
         }finally {
             Constants.DEALING_FROM_HK_VISIT =false;
         }
+    }
+    /**
+     * 姣�10鍒嗛挓鎷夊彇涓�娆℃渶鏂拌瀹㈢櫥璁扮姸鎬侊紙棰勭害鎴愬姛鍜屽凡鐧昏锛�
+     * @throws Exception
+     */
+    @Scheduled(fixedDelay= 10*60*1000)
+    public void syncVisitOuttimeStatus() throws Exception {
+        hkSyncVisitService.getOutTimeVisitRecord();
     }
     /**
      * 涓嬭浇娴峰悍绯荤粺鍥剧墖鏁版嵁
@@ -147,7 +158,7 @@
      */
     @Scheduled(fixedDelay= 60*1000)
     public void syncParkBookData()  {
-        hkSyncImgService.syncParkBookData();
+        hkSyncParkService.syncParkBookData();
     }
 
 

--
Gitblit v1.9.3