mybatis多参数传递(其中包括数组)

来源:互联网 发布:routerpassview mac版 编辑:程序博客网 时间:2024/06/01 09:14
mapper接口的方法:
public void batchDelete(@Param(value = "activityId") Integer activityId, @Param(value = "userIds") Integer[] userIds);

mapper.xml的配置:

<insert id="batchDelete">     delete from T_ACT_USERS where ACTIVITY_ID = #{activityId}     and USER_ID in     <foreach collection="userIds" item="item" index="index" open="(" separator="," close=")">            #{item}     </foreach></insert>


0 0
原创粉丝点击