| | |
| | | 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> |
| | |
| | | #{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"> |
| | |
| | | </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} |
| | |
| | | <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} |
| | |
| | | <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=","> |