|
@@ -96,13 +96,14 @@
|
|
|
select * from t_sell_land
|
|
|
<where>
|
|
|
<if test="parkId != null">
|
|
|
- belong_park = #{parkId}
|
|
|
+ and belong_park = #{parkId}
|
|
|
</if>
|
|
|
<if test="keyword != null and keyword != ''">
|
|
|
<if test="parkId != null">and</if>
|
|
|
land_name like concat('%', #{keyword}, '%')
|
|
|
</if>
|
|
|
</where>
|
|
|
+ ORDER BY belong_park ASC
|
|
|
limit #{begin},#{pageSize}
|
|
|
</select>
|
|
|
|