From b8bf2507bc7b23c90bc6dc71ea2460e277d3800a Mon Sep 17 00:00:00 2001
From: chengf <cgf12138@163.com>
Date: 星期五, 30 一月 2026 19:23:44 +0800
Subject: [PATCH] 导入测试
---
java110-db/src/main/resources/mapper/community/RoomServiceDaoImplMapper.xml | 7 +++++++
1 files changed, 7 insertions(+), 0 deletions(-)
diff --git a/java110-db/src/main/resources/mapper/community/RoomServiceDaoImplMapper.xml b/java110-db/src/main/resources/mapper/community/RoomServiceDaoImplMapper.xml
index d5209da..1b882e0 100755
--- a/java110-db/src/main/resources/mapper/community/RoomServiceDaoImplMapper.xml
+++ b/java110-db/src/main/resources/mapper/community/RoomServiceDaoImplMapper.xml
@@ -168,7 +168,11 @@
t.room_sub_type,t.room_rent,t.room_area,t.room_sub_type roomSubType,t.room_rent roomRent,t.room_area roomArea
from building_room t
left join building_unit bu on bu.unit_id = t.unit_id
+ left join f_floor ff on ff.floor_id = bu.floor_id
where 1 =1
+ <if test="floorNum !=null and floorNum != ''">
+ and ff.floor_num = #{floorNum}
+ </if>
<if test="feeCoefficient !=null and feeCoefficient != ''">
and t.fee_coefficient= #{feeCoefficient}
</if>
@@ -826,6 +830,9 @@
<if test="roomNum !=null and roomNum != ''">
and t.room_num= #{roomNum}
</if>
+ <if test="roomNumIsNull != null">
+ and t.room_num = ''
+ </if>
<if test="roomNumLike !=null and roomNumLike != ''">
and t.`room_num` like concat('%', #{roomNumLike},'%')
</if>
--
Gitblit v1.8.0