From 826cd5b51d5106cfea07e397eda184fb15ec7a30 Mon Sep 17 00:00:00 2001
From: jinlin <jinlin>
Date: 星期五, 02 八月 2024 14:33:59 +0800
Subject: [PATCH] 修改
---
modules/mainPart/src/main/resources/mapper/taskReliability/TaskPhaseDao.xml | 8 ++++++++
1 files changed, 8 insertions(+), 0 deletions(-)
diff --git a/modules/mainPart/src/main/resources/mapper/taskReliability/TaskPhaseDao.xml b/modules/mainPart/src/main/resources/mapper/taskReliability/TaskPhaseDao.xml
index a4e8995..84856c9 100644
--- a/modules/mainPart/src/main/resources/mapper/taskReliability/TaskPhaseDao.xml
+++ b/modules/mainPart/src/main/resources/mapper/taskReliability/TaskPhaseDao.xml
@@ -22,5 +22,13 @@
is_delete = 0
and task_id =${taskId}
</select>
+ <select id="getPhaseByTask" resultType="java.lang.Long">
+ SELECT id
+ FROM task_phase
+ where
+ is_delete = 0
+ and task_id =${taskId}
+ order by phase_sort
+ </select>
</mapper>
--
Gitblit v1.9.1