From 165078645b8cfe800aeda7206e89ebd901c7e6c8 Mon Sep 17 00:00:00 2001 From: k94314517 <8417338+k94314517@user.noreply.gitee.com> Date: 星期二, 19 十二月 2023 18:13:54 +0800 Subject: [PATCH] ERP接口 --- server/dmvisit_admin/src/main/java/com/doumee/task/ScheduleTool.java | 23 +++++++++++++++++------ 1 files changed, 17 insertions(+), 6 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 3ad095e..c94d5b0 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 @@ -3,6 +3,7 @@ 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; @@ -23,6 +24,8 @@ private HkSyncImgServiceImpl hkSyncImgService; @Autowired private HkSyncOrgUserServiceImpl hkSyncOrgUserService; + @Autowired + private HkSyncVisitServiceImpl hkSyncVisitService; /** * 鏄惁寮�鍙戣�� */ @@ -42,17 +45,25 @@ * 瀹氭椂鍚屾缁勭粐淇℃伅鍒版捣搴风郴缁� * @throws Exception */ +// @Scheduled(fixedDelay= 60*1000) +// public void syncOrgData() { +// hkSyncOrgUserService.syncOrgData(); +// } + /** + * 瀹氭椂鍚屾缁勭粐淇℃伅鍒版捣搴风郴缁� + * @throws Exception + */ @Scheduled(fixedDelay= 60*1000) - public void syncOrgData() { - hkSyncOrgUserService.syncOrgData(); + public void syncVisitData() { + hkSyncVisitService.syncVisitData(); } /** * 瀹氭椂鍚屾鐢ㄦ埛淇℃伅鍒版捣搴风郴缁� * @throws Exception */ - @Scheduled(fixedDelay= 60*1000) - public void syncUserData() { - hkSyncImgService.syncUserData(); - } +// @Scheduled(fixedDelay= 60*1000) +// public void syncUserData() { +// hkSyncImgService.syncUserData(); +// } } -- Gitblit v1.9.3