@Param
采用#{}的方式把@Param注解括号内的参数进行引用(括号内参数对应的是形参如 userName对应的是name);
<select id=" selectUser" resultMap="BaseResultMap">
select * from user_user_t where user_name = #{dto.getName} and resultType = #{type}
</select>
对应dao层
public List<ApArticle> loadArticleList(@Param("dto")ArticleHomeDto dto, @Param("type") Short type);