jinlin
2025-02-18 6250f74b2a02770a37f2f0144c762f7952a12bd6
modules/mainPart/src/main/resources/mapper/taskReliability/TaskPhaseDao.xml
@@ -30,5 +30,14 @@
          and task_id =${taskId}
        order by phase_sort
    </select>
    <select id="getListByTaskId" resultType="com.zt.life.modules.mainPart.taskReliability.model.TaskPhase">
        SELECT
            a.*
        FROM
            task_phase a
        where a.is_delete = 0
          and a.task_id=#{taskId}
        ORDER BY a.phase_sort
    </select>
</mapper>