设备记录列表显示问题修改

This commit is contained in:
2025-12-26 15:54:14 +08:00
parent f2d74b8f17
commit 6a058318f2

View File

@ -13,8 +13,8 @@ PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN"
a.content,
a.create_time AS createTime
FROM
device_log a left join device b on a.device_id = b.id
left join device_type c on b.device_type = c.id
device_log a inner join device b on a.device_id = b.id
inner join device_type c on b.device_type = c.id
WHERE 1 = 1
<if test="bo.deviceType != null">
AND c.id = #{bo.deviceType}