jinlin
2024-09-19 79da50ff6a8cabc082472c27ac85724ef664db67
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>