码迷,mamicode.com
首页 > 其他好文 > 详细

mybatis代码自动生成的where-if 查询Integer类型不生效问题

时间:2019-08-11 13:23:12      阅读:173      评论:0      收藏:0      [点我收藏+]

标签:数据库   内容   png   src   条件   ati   div   sed   问题   

查询语句:
<if test="intoIsPassed != null and intoIsPassed != ‘‘ "> and r.into_is_passed = #{intoIsPassed, jdbcType=INTEGER} </if>

  数据库内容:

技术图片

postman查询条件:

技术图片

查询结果:

"intoIsPassed": 1,
中途没有任何报错!!!!!!
修改:去掉后面判断部分
查询语句:
<if test="intoIsPassed != null "> and r.into_is_passed = #{intoIsPassed, jdbcType=INTEGER} </if>

查询成功!结果为:技术图片

更改条件:技术图片

 

至此,结束。

 

mybatis代码自动生成的where-if 查询Integer类型不生效问题

标签:数据库   内容   png   src   条件   ati   div   sed   问题   

原文地址:https://www.cnblogs.com/zxh-xy/p/11334553.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!