mybatis一个方法传多个参数使用@Param注解,且select语句不能使用 parameterType
- Mapper.java类方法编写如下:
public List<String> listData(String type, Integer num);
2.Mapper.xml关于此方法的sql编写如下:
<select id="listData" resultType="java.util.List">
select id from user where type=#{type, jdbcType=VARCHAR} and num=#{num, jdbcType=INTEGER}
</select>