cjl
2023-07-11 a9710ecfbc7cd622db1dc6786c4acca31b71e620
screen-job/src/main/resources/mapper/HistoryAqiMapper.xml
@@ -9,4 +9,12 @@
        <result column="value" property="value"/>
    </resultMap>
    <insert id="insertHistoryAqi">
        INSERT INTO
        history_aqi
        VALUES
        <foreach collection="list" item="item" separator=",">
        (#{item.guid},#{item.time},#{item.value})
        </foreach>
    </insert>
</mapper>