当页面传来的参数为INTEGER类型时: INTEGER START = 3;
<if test="start !=null and start !='' ">
LIMIT #{start},#{end}
</if>
判断无法通过,对于不等于空字符串判断,需要谨慎使用
当页面传来的参数为INTEGER类型时: INTEGER START = 3;
<if test="start !=null and start !='' ">
LIMIT #{start},#{end}
</if>
判断无法通过,对于不等于空字符串判断,需要谨慎使用