管道基础大数据平台系统开发-【后端】-Server
src/main/resources/mapper/sys/TokenMapper.xml
@@ -17,7 +17,6 @@
            <if test="name != null">
                and token = #{name}
            </if>
            <if test="type != null">
                and type = #{type}
            </if>
@@ -79,9 +78,8 @@
    <delete id="deleteTokens"  >
        delete from lf.sys_token where id in
        <foreach item="ids" collection="list" index="index" open="("
                 separator="," close=")">
            #{ids}
        <foreach item="id" collection="ids" index="index" open="(" separator="," close=")">
            #{id}
        </foreach>
    </delete>