From 6a058318f24e6985cc9487587372d8ddc0078046 Mon Sep 17 00:00:00 2001 From: chenyouting <514333061@qq.com> Date: Fri, 26 Dec 2025 15:54:14 +0800 Subject: [PATCH] =?UTF-8?q?=E8=AE=BE=E5=A4=87=E8=AE=B0=E5=BD=95=E5=88=97?= =?UTF-8?q?=E8=A1=A8=E6=98=BE=E7=A4=BA=E9=97=AE=E9=A2=98=E4=BF=AE=E6=94=B9?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../src/main/resources/mapper/equipment/DeviceLogMapper.xml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/fys-modules/fys-equipment/src/main/resources/mapper/equipment/DeviceLogMapper.xml b/fys-modules/fys-equipment/src/main/resources/mapper/equipment/DeviceLogMapper.xml index e0946b8a..d0d9fffb 100644 --- a/fys-modules/fys-equipment/src/main/resources/mapper/equipment/DeviceLogMapper.xml +++ b/fys-modules/fys-equipment/src/main/resources/mapper/equipment/DeviceLogMapper.xml @@ -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 AND c.id = #{bo.deviceType}