From c18b8f0f12f9c3965fee72ea2ae668c2fc89d908 Mon Sep 17 00:00:00 2001 From: jiangping <jp@doumee.com> Date: 星期一, 18 十二月 2023 17:24:58 +0800 Subject: [PATCH] 海康接口对接开发 --- server/dmvisit_admin/src/main/java/com/doumee/task/ScheduleTool.java | 30 ++++++++++++++++++++++++++++++ 1 files changed, 30 insertions(+), 0 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 4955c56..8818ff7 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 @@ -2,6 +2,8 @@ import com.doumee.service.business.impl.hksync.HkSyncImgServiceImpl; +import com.doumee.service.business.impl.hksync.HkSyncOrgUserServiceImpl; +import com.doumee.service.business.impl.hksync.HkSyncVisitServiceImpl; import org.springframework.beans.factory.annotation.Autowired; import org.springframework.beans.factory.annotation.Value; import org.springframework.scheduling.annotation.EnableScheduling; @@ -20,6 +22,10 @@ @Autowired private HkSyncImgServiceImpl hkSyncImgService; + @Autowired + private HkSyncOrgUserServiceImpl hkSyncOrgUserService; + @Autowired + private HkSyncVisitServiceImpl hkSyncVisitService; /** * 鏄惁寮�鍙戣�� */ @@ -35,5 +41,29 @@ public void downloadHkImg() throws Exception { hkSyncImgService.downHKImgs(0); } + /** + * 瀹氭椂鍚屾缁勭粐淇℃伅鍒版捣搴风郴缁� + * @throws Exception + */ + @Scheduled(fixedDelay= 60*1000) + public void syncOrgData() { + hkSyncOrgUserService.syncOrgData(); + } + /** + * 瀹氭椂鍚屾缁勭粐淇℃伅鍒版捣搴风郴缁� + * @throws Exception + */ + @Scheduled(fixedDelay= 60*1000) + public void syncVisitData() { + hkSyncVisitService.syncVisitData(); + } + /** + * 瀹氭椂鍚屾鐢ㄦ埛淇℃伅鍒版捣搴风郴缁� + * @throws Exception + */ + @Scheduled(fixedDelay= 60*1000) + public void syncUserData() { + hkSyncImgService.syncUserData(); + } } -- Gitblit v1.9.3