From a28e2d43692d0e8d828a6ff09f0a44664ea6f41e Mon Sep 17 00:00:00 2001
From: 云 <2163098428@qq.com>
Date: 星期一, 20 四月 2026 11:25:00 +0800
Subject: [PATCH] feat(technology): 完善工艺路线模块功能

---
 src/main/java/com/ruoyi/basic/service/impl/CustomerFollowUpServiceImpl.java |    5 +++--
 1 files changed, 3 insertions(+), 2 deletions(-)

diff --git a/src/main/java/com/ruoyi/basic/service/impl/CustomerFollowUpServiceImpl.java b/src/main/java/com/ruoyi/basic/service/impl/CustomerFollowUpServiceImpl.java
index 4fd252c..12c7e06 100644
--- a/src/main/java/com/ruoyi/basic/service/impl/CustomerFollowUpServiceImpl.java
+++ b/src/main/java/com/ruoyi/basic/service/impl/CustomerFollowUpServiceImpl.java
@@ -30,6 +30,7 @@
 import java.time.LocalDateTime;
 import java.time.format.DateTimeFormatter;
 import java.util.ArrayList;
+import java.util.Collection;
 import java.util.List;
 import java.util.UUID;
 
@@ -131,7 +132,7 @@
         }
 
         List<CustomerFollowUp> followUps = list(new LambdaQueryWrapper<CustomerFollowUp>()
-                .eq(CustomerFollowUp::getCustomerId, customerId));
+                .eq(CustomerFollowUp::getCustomerPrivatePoolId, customerId));
 
         if (followUps != null && !followUps.isEmpty()) {
             for (CustomerFollowUp followUp : followUps) {
@@ -141,7 +142,7 @@
     }
 
     @Override
-    public List<CustomerFollowUpFile> getFollowUpFilesByIds(List<Long> fileIds) {
+    public List<CustomerFollowUpFile> getFollowUpFilesByIds(Collection<Long> fileIds) {
         if (fileIds == null || fileIds.isEmpty()) {
             return new ArrayList<>(0);
         }

--
Gitblit v1.9.3