whycxzp
2025-03-26 427ec9e696494cedcde2d9c58e9565d1db6117aa
1
2
3
4
5
6
7
8
9
10
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE mapper PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN" "http://mybatis.org/dtd/mybatis-3-mapper.dtd">
<mapper namespace="com.whyc.mapper.BattGroupUsrMapper">
 
    <delete id="delUsrInBaoji">
        <foreach collection="list" item="item" separator=";" >
            delete from db_user.tb_battgroup_usr where baoji_group_id = #{item.baojiGroupId} and uid = #{item.uid}
        </foreach>
    </delete>
</mapper>