mybatis-sql-viewer icon indicating copy to clipboard operation
mybatis-sql-viewer copied to clipboard

不能支持注解的方式

Open tanshion opened this issue 2 years ago • 0 comments

不能支持注解的方式

@Select("""
        <script>
        select * from CHAT_USER where USER_ID in
        <foreach collection="list" index="index" item="item" open="(" separator="," close=")">
            #{item}
        </foreach>
        </script>
        """)
    List<UserResp> selectByUserIds(Set<Long> list);

tanshion avatar Nov 20 '23 00:11 tanshion