From 6518050093fe8f36b603a7fef9d4683813a91645 Mon Sep 17 00:00:00 2001
From: chenhj <1263187585@qq.com>
Date: 星期三, 22 四月 2026 14:57:30 +0800
Subject: [PATCH] 修复循环依赖

---
 src/main/java/com/ruoyi/projectManagement/service/impl/handle/InfoStageHandleService.java |    4 +++-
 1 files changed, 3 insertions(+), 1 deletions(-)

diff --git a/src/main/java/com/ruoyi/projectManagement/service/impl/handle/InfoStageHandleService.java b/src/main/java/com/ruoyi/projectManagement/service/impl/handle/InfoStageHandleService.java
index 31e5497..55a9065 100644
--- a/src/main/java/com/ruoyi/projectManagement/service/impl/handle/InfoStageHandleService.java
+++ b/src/main/java/com/ruoyi/projectManagement/service/impl/handle/InfoStageHandleService.java
@@ -17,6 +17,7 @@
 import com.ruoyi.projectManagement.vo.SaveInfoStageVo;
 import jakarta.validation.constraints.NotNull;
 import lombok.RequiredArgsConstructor;
+import org.springframework.beans.factory.annotation.Autowired;
 import org.springframework.context.annotation.Lazy;
 import org.springframework.stereotype.Component;
 import org.springframework.transaction.annotation.Transactional;
@@ -37,7 +38,8 @@
     private final InfoHandleService infoHandleService;
     private final CustomerFollowUpFileService customerFollowUpFileService;
     @Lazy
-    private final InfoStageHandleService infoStageHandleService;
+    @Autowired
+    private InfoStageHandleService infoStageHandleService;
 
     @Transactional
     public void save(@NotNull SaveInfoStageVo saveInfoStageVo) {

--
Gitblit v1.9.3