jinlin
2024-09-06 3ecb68c427a627ad8e90d8c555655e7724be2d96
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>