chengf
2026-01-27 b6184e2ddf3db37a94f7efb3b619bbc64642a292
java110-db/src/main/resources/mapper/community/CommunityV1ServiceDaoImplMapper.xml
@@ -24,6 +24,13 @@
        barrier_supplier_phone,water_pump_count,ground_parking_spaces,underground_parking_spaces,ground_non_mechanical_fee,
        garage_non_mechanical_fee,temporary_hourly_fee,temporary_daily_fee,temporary_per_time_fee,total_building_count,
        building_unit_count,high_rise_building_count,multilayer_villa_building_count,residential_household_count,shop_household_count
        <!-- 添加新字段 -->
        <if test="publicArea != null">
            ,public_area
        </if>
        <if test="propertyRoomArea != null">
            ,property_room_area
        </if>
        <if test="outTime != null and outTime != ''">
            ,out_time
        </if>
@@ -47,11 +54,17 @@
        #{barrierSupplierPhone},#{waterPumpCount},#{groundParkingSpaces},#{undergroundParkingSpaces},#{groundNonMechanicalFee},
        #{garageNonMechanicalFee},#{temporaryHourlyFee},#{temporaryDailyFee},#{temporaryPerTimeFee},#{totalBuildingCount},
        #{buildingUnitCount},#{highRiseBuildingCount},#{multilayerVillaBuildingCount},#{residentialHouseholdCount},#{shopHouseholdCount}
        <!-- 添加新字段的值 -->
        <if test="publicArea != null">
            ,#{publicArea}
        </if>
        <if test="propertyRoomArea != null">
            ,#{propertyRoomArea}
        </if>
        <if test="outTime != null and outTime != ''">,#{outTime}</if>
        <if test="communityCode != null and communityCode != ''">,#{communityCode}</if>
        )
    </insert>
    <!-- 查询小区管理信息 add by wuxw 2018-07-03 -->
    <select id="getCommunityInfo" parameterType="Map" resultType="Map">
@@ -70,6 +83,9 @@
        </if>
        <if test="cityCode !=null and cityCode != ''">
            and t.city_code= #{cityCode}
        </if>
        <if test="communityCode !=null and communityCode != ''">
            and t.community_code= #{communityCode}
        </if>
        <if test="statusCd !=null and statusCd != ''">
            and t.status_cd= #{statusCd}
@@ -403,6 +419,12 @@
        <if test="shopHouseholdCount != null and shopHouseholdCount != ''">
            , t.shop_household_count= #{shopHouseholdCount}
        </if>
        <if test="publicArea != null and publicArea != ''">
            , t.public_area= #{publicArea}
        </if>
        <if test="propertyRoomArea != null and propertyRoomArea != ''">
            , t.property_room_area= #{propertyRoomArea}
        </if>
        where 1=1
        <if test="communityId !=null and communityId != ''">
            and t.community_id= #{communityId}
@@ -451,6 +473,9 @@
        <if test="communityId !=null and communityId != ''">
            and t.community_id= #{communityId}
        </if>
        <if test="communityCode !=null and communityCode != ''">
            and t.community_code= #{communityCode}
        </if>
        <if test="communityIds != null">
            and t.community_id in
            <foreach collection="communityIds" item="item" open="(" close=")" separator=",">