inspect-server/src/main/resources/mapper/InsProductMapper.xml
@@ -172,4 +172,13 @@
        order by io.first_submit_date desc
        limit 10
    </select>
    <select id="getRevocationInsProductList" resultType="com.ruoyi.inspect.pojo.InsProduct">
        select *
        from ins_product
        WHERE state = 1
        AND id in
        <foreach collection="ids" item="id" open="(" close=")" separator=",">
            #{id}
        </foreach>
    </select>
</mapper>