Commit bf070bd4 by YANGYANG

重点人员 条件处理提交

parent 91940a71
...@@ -208,13 +208,13 @@ ...@@ -208,13 +208,13 @@
AND SYRK_ZXWD BETWEEN #{startLat} AND #{endLat} AND SYRK_ZXWD BETWEEN #{startLat} AND #{endLat}
</if> </if>
<if test="xm != null and xm != ''"> <if test="xm != null and xm != ''">
and BZ.XM like '%'|| #{xm} ||'%' AND BZ.XM LIKE concat('%', #{xm , jdbcType=VARCHAR }, '%')
</if> </if>
<if test="zjhm != null and zjhm != ''"> <if test="zjhm != null and zjhm != ''">
and BZ.ZJHM like '%'|| #{zjhm} ||'%' AND BZ.ZJHM LIKE concat('%', #{zjhm , jdbcType=VARCHAR }, '%')
</if> </if>
<if test="rybq != null and rybq != ''"> <if test="rybq != null and rybq != ''">
and BZ.CODE_TXT like '%'|| #{rybq} ||'%' AND BZ.CODE_TXT LIKE concat('%', #{rybq , jdbcType=VARCHAR }, '%')
</if> </if>
</select> </select>
</mapper> </mapper>
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment