19 lines
705 B
XML
19 lines
705 B
XML
|
<?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="com.hisense.monitormanage.mapper.BuildingRecordsMapper">
|
||
|
|
||
|
<insert id="batchSave" parameterType="java.util.List">
|
||
|
insert into t_building_records
|
||
|
(
|
||
|
project_name,build_license,push_time,appid,pm10,noice
|
||
|
)
|
||
|
values
|
||
|
<foreach collection="list" item="item" index="index" separator=",">
|
||
|
(
|
||
|
#{item.projectName},#{item.buildLicense},#{item.pushTime},#{item.appid},
|
||
|
#{item.pm10},#{item.noice}
|
||
|
)
|
||
|
</foreach>
|
||
|
</insert>
|
||
|
|
||
|
</mapper>
|