项目修改优化

This commit is contained in:
马三炮 2025-04-30 09:27:08 +08:00
parent c1e18f3e09
commit d460d521ba
1 changed files with 2 additions and 2 deletions

View File

@ -140,7 +140,7 @@
GROUP BY
ttp.tower_id
) A ON tt.id = A.tower_id
WHERE tt.pro_id = #{id}
WHERE tt.pro_id = #{id} and is_actvice = '1'
ORDER BY tt.sort
</select>
<!--查询交叉跨越信息-->
@ -162,6 +162,6 @@
FROM tb_span_tower
GROUP BY three_span_id
) A ON tts.id = A.three_span_id
WHERE tts.pro_id = #{id} AND tts.span_type = '1'
WHERE tts.pro_id = #{id} AND tts.span_type = '1' and tts.is_active='1'
</select>
</mapper>