<if test="flag != null and flag!='' and flag=='1'.toString()">
sql语句
</if>
注意点:
mybatis中判断字符串为某一个值,必须+toString()或者flage==“xxx” (双引号),否则无法进入该判断
<if test="flag != null and flag!='' and flag=='1'.toString()">
sql语句
</if>
注意点:
mybatis中判断字符串为某一个值,必须+toString()或者flage==“xxx” (双引号),否则无法进入该判断