使用==和!=的时候需要将引号替换一下

正常的使用

<if test="vipBaseId != null">
    and vrl.vipBaseId = #{vipBaseId}
</if>

!=的时候的使用

<if test="billType != null">
     <if test='billType == "-1"'>
          and (vrl.type = 5 or vrl.type = 6)
      </if>
      <if test='billType != "-1"'>
          and o.billType = #{billType}
      </if>
</if>