whycxzp
2025-03-14 1f7c4004dfa2d39e3b761ce4a833f47d7663f461
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>