现代衬衫

文章
6
资源
0
加入时间
2年10月21天

MyBatis - 传递参数 7 种方式

方法0:单参数传递public User selectUser(int deptId);<select id="selectUser" resultMap="UserResultMap"> select * from user where dept_id = #{param}</select>注:单参数传递名字可以和形参不一样。方法...