经查资料发现,mybatis判断整数为0时,不进入该条件。解决方案:
增加 or soft.rolled==0 条件判断,让mybatis即使数值为0,也进入该判断即可
"<if test=\"soft.rolled!= null and soft.rolled!='' or soft.rolled==0\"> and rolled = #{soft.rolled} </if>"
经查资料发现,mybatis判断整数为0时,不进入该条件。解决方案:
增加 or soft.rolled==0 条件判断,让mybatis即使数值为0,也进入该判断即可
"<if test=\"soft.rolled!= null and soft.rolled!='' or soft.rolled==0\"> and rolled = #{soft.rolled} </if>"