语法结构
when 标签相当于 if
otherwise 相当于else
<choose>
<when test="carClass !=null and carClass !='' and carClass !=''.toString()">
and car_classify = #{carClass}
</when>
<otherwise>
and car_classify in (1,2,3,4)
</otherwise>
</choose>