1. Mybatis判断字符串是否为空的变态写法
<if test="bussSceneIsNull =='0'.toString() "> <![CDATA[ and (t4.BUSS_SCENE = null or t4.BUSS_SCENE = '')]]> </if>
2. 第二种变态写法
<if test='bussSceneIsNull == "" '> <![CDATA[ and (t4.BUSS_SCENE = null or t4.BUSS_SCENE = '')]]> </if>