PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN" "http://mybatis.org/dtd/mybatis-3-mapper.dtd"> <mapper namespace="goods"> <!--传递多参数,使用parameterType指定map接口,sql中的#{key}提取参数--> select * from t_goods where current_price between #{min} and #{max } order by current_...