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

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>

猜你喜欢

转载自www.cnblogs.com/mituxiaogaoyang/p/9107446.html
今日推荐