From a2c8749f26688749253336fe8a27e7ff79f171ce Mon Sep 17 00:00:00 2001
From: hsy <1029150275@qq.com>
Date: 星期三, 26 八月 2026 13:32:01 +0800
Subject: [PATCH] fix(srm): 修正招标大屏统计接口的数据逻辑和时间错位问题

---
 yudao-module-mes/src/main/java/cn/iocoder/yudao/module/mes/service/pd/document/MesPdDocumentServiceImpl.java |    6 ++++++
 1 files changed, 6 insertions(+), 0 deletions(-)

diff --git a/yudao-module-mes/src/main/java/cn/iocoder/yudao/module/mes/service/pd/document/MesPdDocumentServiceImpl.java b/yudao-module-mes/src/main/java/cn/iocoder/yudao/module/mes/service/pd/document/MesPdDocumentServiceImpl.java
index 18f02e4..2bb158f 100644
--- a/yudao-module-mes/src/main/java/cn/iocoder/yudao/module/mes/service/pd/document/MesPdDocumentServiceImpl.java
+++ b/yudao-module-mes/src/main/java/cn/iocoder/yudao/module/mes/service/pd/document/MesPdDocumentServiceImpl.java
@@ -18,6 +18,7 @@
 import org.springframework.validation.annotation.Validated;
 
 import java.time.LocalDateTime;
+import java.util.Collection;
 import java.util.List;
 
 import static cn.iocoder.yudao.framework.common.exception.util.ServiceExceptionUtil.exception;
@@ -109,6 +110,11 @@
     }
 
     @Override
+    public List<MesPdDocumentDO> getDocumentListByProjectIds(Collection<Long> projectIds) {
+        return documentMapper.selectListByProjectIds(projectIds);
+    }
+
+    @Override
     public void deleteByProjectId(Long projectId) {
         List<MesPdDocumentDO> documents = documentMapper.selectListByProjectId(projectId);
         for (MesPdDocumentDO document : documents) {

--
Gitblit v1.9.3