mybatis中條件表達式字符串用''單引號不能直接比較,須要加toString()mybatis
<if test="param != null and param != 'hello'.toString()" >
或者用""雙引號ide
<if test='param != null and param != "hello" ' >