From e9a4d6f6ea9fac007f3e032afcefb47d9d6a95c0 Mon Sep 17 00:00:00 2001 From: yuance <182865460@qq.com> Date: Thu, 28 May 2026 09:52:07 +0800 Subject: [PATCH] =?UTF-8?q?=E4=BF=AE=E5=A4=8D=E5=AE=A1=E8=AE=A1=E6=96=B9?= =?UTF-8?q?=E6=A1=88=E7=94=9F=E6=88=90=E6=8A=A5=E9=94=99=E9=97=AE=E9=A2=98?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../java/com/gxwebsoft/ai/controller/AuditReportController.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/main/java/com/gxwebsoft/ai/controller/AuditReportController.java b/src/main/java/com/gxwebsoft/ai/controller/AuditReportController.java index c8b81b8..cd3ffc1 100644 --- a/src/main/java/com/gxwebsoft/ai/controller/AuditReportController.java +++ b/src/main/java/com/gxwebsoft/ai/controller/AuditReportController.java @@ -1603,7 +1603,7 @@ public class AuditReportController extends BaseController { // "数据源:1)取证单(已通过evidenceIds传入) 2)阿里云资料库(自动检索)\n" + // "要求:优先用取证单事实,结合资料库数据,不足时生成框架内容,勿编造数据。\n"; - if(isEvidenceUsed && !evidenceIds.isEmpty()){ + if(isEvidenceUsed && evidenceIds != null && !evidenceIds.isEmpty()){ // 将 ID 列表转换为逗号分隔的字符串 String evidenceIdsStr = evidenceIds.stream() .map(String::valueOf)