<choose>标签:mybatis,type,param,else From: https://blog.51cto.com/u_13002884/5894580
<when test="param.type == 6 or param.type == 7">
AND (a.type = 6 or a.type = 7)
</when>
<otherwise>
AND a.type = #{param.type}
</otherwise>
</choose>
<choose>标签:mybatis,type,param,else From: https://blog.51cto.com/u_13002884/5894580
<when test="param.type == 6 or param.type == 7">
AND (a.type = 6 or a.type = 7)
</when>
<otherwise>
AND a.type = #{param.type}
</otherwise>
</choose>