From 3b3521961c246eda35cde1fde685e3931f8af529 Mon Sep 17 00:00:00 2001
From: wente <329538422@qq.com>
Date: 星期一, 28 十月 2024 08:46:25 +0800
Subject: [PATCH] 仿真字体 数量提示 箭头缝隙

---
 modules/mainPart/src/main/resources/mapper/taskReliability/TaskPhaseModelDao.xml |   10 ++++++++++
 1 files changed, 10 insertions(+), 0 deletions(-)

diff --git a/modules/mainPart/src/main/resources/mapper/taskReliability/TaskPhaseModelDao.xml b/modules/mainPart/src/main/resources/mapper/taskReliability/TaskPhaseModelDao.xml
index d38b55a..9f0c345 100644
--- a/modules/mainPart/src/main/resources/mapper/taskReliability/TaskPhaseModelDao.xml
+++ b/modules/mainPart/src/main/resources/mapper/taskReliability/TaskPhaseModelDao.xml
@@ -16,6 +16,16 @@
                            on a.id = b.operat_condit_id and b.is_delete = 0 and b.phase_id = ${phaseId}
         WHERE a.IS_DELETE = 0
           and a.product_id = ${productId}
+        order by a.CREATE_DATE
+    </select>
+    <select id="getListByPhaseId" resultType="com.zt.life.modules.mainPart.taskReliability.model.TaskPhaseModel">
+        SELECT
+            a.*
+        FROM
+            task_phase_model a
+        where a.is_delete = 0
+          and a.operat_condit_duration_rate > 0
+          and a.phase_id=#{phaseId}
     </select>
 
 </mapper>

--
Gitblit v1.9.1