.toLowerCase()转化为小写
.toUpperCase()转化为大写
<if test="'Admin'.toLowerCase() == 'admin'">
and id = 4000
</if>
.toString()是转化为字符串
<if test="readState != null and readState.toString() == '0'.toString()">
and m.readState = '0'
</if>
.toLowerCase()转化为小写
.toUpperCase()转化为大写
<if test="'Admin'.toLowerCase() == 'admin'">
and id = 4000
</if>
.toString()是转化为字符串
<if test="readState != null and readState.toString() == '0'.toString()">
and m.readState = '0'
</if>