<if test="num!= null and num!= ''">num非空时执行</if>
当num值为0时,并没有进入方法
解决方法
1、去掉空字符串判断
<if test="num!= null">num非空时执行</if>
2、添加0值判断
<if test="num!= null and num!= '' or num== 0">num非空时执行</if>
<if test="num!= null and num!= ''">num非空时执行</if>
当num值为0时,并没有进入方法
解决方法
1、去掉空字符串判断
<if test="num!= null">num非空时执行</if>
2、添加0值判断
<if test="num!= null and num!= '' or num== 0">num非空时执行</if>