前置联调

This commit is contained in:
hzj
2025-05-15 09:44:17 +08:00
parent e886c6caa8
commit 6e7a55cb93
3 changed files with 13 additions and 1 deletions

View File

@@ -58,9 +58,10 @@
<select id="getMonitorDetail" resultType="com.njcn.device.biz.pojo.dto.LineDevGetDTO">
select a.id pointId,a.name pointName,b.Time_Interval timeInterval
select a.id pointId,a.name pointName,b.Time_Interval timeInterval,bus.pid devId
from pq_line a
inner join pq_line_detail b on a.id=b.id
inner join pq_line bus on a.pid =bus.id
where a.id = #{monitorId}
</select>
<select id="getLineDetailByIds" resultType="com.njcn.device.pq.pojo.po.LineDetail">