标签:tor item ids val value void 接口 batch HERE
public void batchDelete(@Param(value = "activityId") Integer activityId, @Param(value = "userIds") Integer[] userIds);
<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>
标签:tor item ids val value void 接口 batch HERE
原文地址:https://www.cnblogs.com/mituxiaogaoyang/p/9107446.html