chengf
2025-08-01 3ee0aee46457c3ec5546e077a91b290c0e0d15e8
java110-db/src/main/resources/mapper/community/ParkingSpaceServiceDaoImplMapper.xml
@@ -159,14 +159,13 @@
                </foreach>
            </if>
            <if test="psIds != null and psIds != null">
                and t.ps_id in
                <foreach collection="psIds" item="item" open="(" close=")" separator=",">
                <foreach collection="psIds" item="item" open="and t.ps_id in (" close=")" separator=",">
                    #{item}
                </foreach>
            </if>
            <if test="paIds != null ">
                and t.pa_id in
                <foreach collection="paIds" item="item" open="(" close=")" separator=",">
                <foreach collection="paIds" item="item" open="and t.pa_id in (" close=")" separator=",">
                    #{item}
                </foreach>
            </if>
@@ -176,11 +175,11 @@
            <if test="bId !=null and bId != ''">
                and t.b_id= #{bId}
            </if>
        </where>
            order by t.create_time desc
            <if test="page != -1 and page != null ">
                limit #{page}, #{row}
            </if>
        </where>
    </select>
    <!-- 修改停车位信息 add by wuxw 2018-07-03 -->