From fcfe5c58abee6a2f3ea4bcbacad27c9255164363 Mon Sep 17 00:00:00 2001
From: jinlin <jinlin>
Date: 星期五, 02 八月 2024 15:36:48 +0800
Subject: [PATCH] 修改
---
modules/mainPart/src/main/resources/mapper/taskReliability/ModelNodeAlgorithmDao.xml | 9 +++++++++
1 files changed, 9 insertions(+), 0 deletions(-)
diff --git a/modules/mainPart/src/main/resources/mapper/taskReliability/ModelNodeAlgorithmDao.xml b/modules/mainPart/src/main/resources/mapper/taskReliability/ModelNodeAlgorithmDao.xml
index 6dc4b80..08d8a54 100644
--- a/modules/mainPart/src/main/resources/mapper/taskReliability/ModelNodeAlgorithmDao.xml
+++ b/modules/mainPart/src/main/resources/mapper/taskReliability/ModelNodeAlgorithmDao.xml
@@ -24,6 +24,15 @@
and model_id=#{modelId}
</select>
+ <select id="getRbdNodes" resultType="com.zt.life.modules.mainPart.taskReliability.model.ModelNodeAlgorithm">
+ select a.*
+ from model_node_algorithm a
+ where
+ a.is_delete = 0
+ and a.node_type = 'node'
+ order by a.model_id, a.data_id
+ </select>
+
<update id="deleteByModelId">
delete from model_node_algorithm where model_id=#{modelId}
</update>
--
Gitblit v1.9.1