mybatis中 == 和 != 的用法

  • != 的用法
<if test="xxx != null and xxx !=''">
  • == 的用法(相较于!=,仅需将双引号和单引号的位置换一下即可)
<if test='xxx == "1"'>
原文地址:https://www.cnblogs.com/maggieq8324/p/11786039.html