From 5d05c9b73a58db671eb1d401710ced7094388dc2 Mon Sep 17 00:00:00 2001 From: zhaokai Date: Tue, 14 Apr 2026 11:28:22 +0800 Subject: [PATCH] =?UTF-8?q?fix(mapper):=20=E4=BF=AE=E5=A4=8D=E5=8F=97?= =?UTF-8?q?=E9=99=90=E7=A9=BA=E9=97=B4=E6=9F=A5=E8=AF=A2=E5=8F=82=E6=95=B0?= =?UTF-8?q?=E4=BC=A0=E9=80=92=E9=97=AE=E9=A2=98?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../resources/mapper/ConfinedSpaceMapper.xml | 20 +++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/web-infrastructure/src/main/resources/mapper/ConfinedSpaceMapper.xml b/web-infrastructure/src/main/resources/mapper/ConfinedSpaceMapper.xml index 5bbcbbb..b1151a8 100644 --- a/web-infrastructure/src/main/resources/mapper/ConfinedSpaceMapper.xml +++ b/web-infrastructure/src/main/resources/mapper/ConfinedSpaceMapper.xml @@ -10,20 +10,20 @@ confined_space s where s.delete_enum = 'FALSE' - - and s.corpinfo_id = #{eqCorpinfoId} + + and s.corpinfo_id = #{params.eqCorpinfoId} - - and s.type = #{eqType} + + and s.type = #{params.eqType} - - and s.risk_level = #{eqRiskLevel} + + and s.risk_level = #{params.eqRiskLevel} - - and s.name like concat('%',#{likeName},'%') + + and s.name like concat('%',#{params.likeName},'%') - - and s.code like concat('%',#{likeCode},'%') + + and s.code like concat('%',#{params.likeCode},'%') order by s.create_time desc