mapper接口的方法:

public void batchDelete(@Param(value = "activityId") Integer activityId, @Param(value = "userIds") Integer[] userIds);

mapper.xml的配置:

<delete >
        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>
 </delete>

 

相关文章:

  • 2021-07-04
  • 2021-10-31
  • 2022-12-23
  • 2022-12-23
  • 2021-10-01
  • 2021-12-10
猜你喜欢
  • 2021-06-30
  • 2021-05-13
  • 2022-12-23
  • 2021-09-05
  • 2022-01-18
相关资源
相似解决方案