chengf
2025-07-18 271f0165b4701b63a756afca9d440df8a829ce2f
java110-db/src/main/resources/mapper/community/InitializeBuildingUnitDaoImplMapper.xml
@@ -23,6 +23,13 @@
        delete from building_room where 1=1
            and community_id = #{communityId}
    </delete>
    <delete id="deleteOwnerRoomRel" parameterType="Map">
        delete from building_owner_room_rel where room_id in
        <foreach collection="roomIds" item="item" open="(" close=")" separator=",">
            #{item}
        </foreach>
    </delete>
    <!-- 初始化数据 add by wuxw 2018-07-03 -->
    <delete id="deleteParkingArea" parameterType="Map">
        delete from parking_area where 1=1
@@ -33,4 +40,9 @@
        delete from parking_space where 1=1
            and community_id = #{communityId}
    </delete>
    <delete id="deleteOwnerCar" parameterType="Map">
        delete from owner_car where 1=1
        and community_id = #{communityId}
    </delete>
</mapper>