From 50fb58286ed3b718c39a97e0987ee7561a295651 Mon Sep 17 00:00:00 2001 From: k94314517 <8417338+k94314517@user.noreply.gitee.com> Date: 星期五, 04 七月 2025 17:56:41 +0800 Subject: [PATCH] git ch --- server/platform/src/main/java/com/doumee/task/ScheduleTool.java | 14 +++++++++++--- 1 files changed, 11 insertions(+), 3 deletions(-) diff --git a/server/platform/src/main/java/com/doumee/task/ScheduleTool.java b/server/platform/src/main/java/com/doumee/task/ScheduleTool.java index 270fced..081395c 100644 --- a/server/platform/src/main/java/com/doumee/task/ScheduleTool.java +++ b/server/platform/src/main/java/com/doumee/task/ScheduleTool.java @@ -4,6 +4,7 @@ import com.doumee.dao.business.model.InsuranceApply; import com.doumee.service.business.CompanyService; import com.doumee.service.business.InsuranceApplyService; +import com.doumee.service.business.UnionApplyService; import lombok.extern.slf4j.Slf4j; import org.springframework.beans.factory.annotation.Autowired; import org.springframework.scheduling.annotation.EnableScheduling; @@ -16,8 +17,8 @@ * @date 2021-10-10 14:40:35 * https://www.bejson.com/othertools/cron/ cron 琛ㄨ揪寮忕敓鎴愬湴鍧� */ -//@Component -//@EnableScheduling +@Component +@EnableScheduling @Slf4j public class ScheduleTool { @Autowired @@ -25,6 +26,9 @@ @Autowired private InsuranceApplyService insuranceApplyService; + + @Autowired + private UnionApplyService unionApplyService; /** @@ -72,8 +76,12 @@ @Scheduled(cron = "0 5 00 * * ?") public void updateApplyCurrentFee(){ log.info("==============瀹氭椂鏇存柊淇濆崟瀹為檯閲戦=======start======"); - insuranceApplyService.updateApplyCurrentFee(null); + insuranceApplyService.updateApplyCurrentFee(null,null); log.info("==============瀹氭椂鏇存柊淇濆崟瀹為檯閲戦======end======="); + + log.info("==============瀹氭椂鏇存柊鍚堝苟鍗曞疄闄呴噾棰�=======start======"); + unionApplyService.updateUnionApplyCurrentFee(null); + log.info("==============瀹氭椂鏇存柊鍚堝苟鍗曞疄闄呴噾棰�======end======="); } -- Gitblit v1.9.3