jinlin
2024-09-06 3ecb68c427a627ad8e90d8c555655e7724be2d96
modules/mainPart/src/main/resources/mapper/taskReliability/TaskBinoParamDao.xml
@@ -51,7 +51,7 @@
                   and f.is_delete = 0
                   and g.product_id = f.id
                   and g.is_delete = 0
                   and g.reliab_distrib_type = 2
                   and g.reliab_distrib_type = 3
             ) a
                 left join task_bino_param b on
                b.task_id = ${taskId}
@@ -62,4 +62,14 @@
        order by a.phase_id, a.operat_condit_id, a.product_id
    </select>
    <select id="getBinoParams" resultType="com.zt.life.modules.mainPart.taskReliability.model.TaskBinoParam">
        select a.*
        from
            task_bino_param a
        where
            a.IS_DELETE=0
        <if test="shipId!=null">
            and a.task_id = #{taskModelId}
        </if>
    </select>
</mapper>