From 7f89db04cc75a842352087099ee6a7431b7357e0 Mon Sep 17 00:00:00 2001
From: heheng <475597332@qq.com>
Date: 星期二, 09 十二月 2025 15:12:24 +0800
Subject: [PATCH] 修改返回所有数据

---
 multi-system/src/main/resources/mapper/system/FactorContentMapper.xml |   12 ++++++++++++
 1 files changed, 12 insertions(+), 0 deletions(-)

diff --git a/multi-system/src/main/resources/mapper/system/FactorContentMapper.xml b/multi-system/src/main/resources/mapper/system/FactorContentMapper.xml
index 2e89a43..5fd3eab 100644
--- a/multi-system/src/main/resources/mapper/system/FactorContentMapper.xml
+++ b/multi-system/src/main/resources/mapper/system/FactorContentMapper.xml
@@ -18,6 +18,18 @@
                 #{item.type})
             </foreach>
     </insert>
+    <update id="updateByFactorId">
+        UPDATE
+            `factor_content`
+        SET
+            `influence` = NULL,
+            `monitor_method` = NULL,
+            `review` = NULL,
+            `solutions` = NULL,
+            `result` = NULL
+        WHERE
+            `factor_discern_id` = #{factorDiscrenId}
+    </update>
     <delete id="deletedByFactorId">
         DELETE
         FROM

--
Gitblit v1.9.2