|
|
@@ -291,8 +291,8 @@
|
|
|
<select id="queryRoomsByCommunityIdCount" parameterType="Map" resultType="Map">
|
|
|
select count(1) count
|
|
|
FROM building_room t
|
|
|
- left join building_unit u on t.`unit_id` = u.`unit_id` and u.`status_cd` = '0'
|
|
|
- LEFT JOIN f_floor f on u.`floor_id` = f.`floor_id` AND f.`community_id` = t.`community_id` AND f.`status_cd` = '0'
|
|
|
+ inner join building_unit u on t.`unit_id` = u.`unit_id` and u.`status_cd` = '0'
|
|
|
+ inner JOIN f_floor f on u.`floor_id` = f.`floor_id` AND f.`community_id` = t.`community_id` AND f.`status_cd` = '0'
|
|
|
left join t_dict td on t.state = td.status_cd and td.table_name = 'building_room' and td.table_columns = 'state'
|
|
|
WHERE 1 =1
|
|
|
AND t.`community_id` = #{communityId}
|
|
|
@@ -609,8 +609,8 @@
|
|
|
t.room_num roomNum,t.unit_id,t.unit_id unitId,t.b_id,t.b_id bId,t.apartment,t.state,u.`unit_num` unitNum,
|
|
|
u.unit_id unitId,f.floor_id floorId,f.floor_num floorNum,f.floor_area floorArea,u.unit_area unitArea,td.name stateName
|
|
|
FROM building_room t
|
|
|
- left join building_unit u on t.`unit_id` = u.`unit_id` and u.`status_cd` = '0'
|
|
|
- LEFT JOIN f_floor f on u.`floor_id` = f.`floor_id` AND f.`community_id` = t.`community_id` AND f.`status_cd` = '0'
|
|
|
+ inner join building_unit u on t.`unit_id` = u.`unit_id` and u.`status_cd` = '0'
|
|
|
+ inner JOIN f_floor f on u.`floor_id` = f.`floor_id` AND f.`community_id` = t.`community_id` AND f.`status_cd` = '0'
|
|
|
left join t_dict td on t.state = td.status_cd and td.table_name = 'building_room' and td.table_columns = 'state'
|
|
|
WHERE 1 =1
|
|
|
AND t.`community_id` = #{communityId}
|