Lius
2025-04-10 17fc602f57c685bac6b426d112252adb49baec44
1
2
3
4
5
6
7
8
9
10
11
12
13
14
<?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="org.jeecg.modules.system.mapper.SysThirdAccountMapper">
 
    <!-- 通过 sysUsername 集合批量查询 -->
    <select id="selectThirdIdsByUsername" resultType="org.jeecg.modules.system.entity.SysThirdAccount">
        SELECT third_user_id FROM sys_third_account
        INNER JOIN sys_user ON sys_user.id = sys_third_account.sys_user_id
        WHERE sys_third_account.third_type = #{thirdType} AND
        <!-- TODO in 查询数据量大的时候可能会报错 -->
        <foreach collection="sysUsernameArr" item="item" open=" sys_user.username IN (" close=")" separator=",">#{item}</foreach>
    </select>
 
</mapper>