mybatis将i==0的值也认定为空字符串

 修改如下:

<if test="kindcode != null and kindcode!=''">
   and a.kindcode =#{kindcode}
</if>

改为

<if test="kindcode != null">
   and a.kindcode =#{kindcode}
</if>

 

posted @ 2018-05-26 09:28  名字被人使用  阅读(169)  评论(0编辑  收藏  举报