| | |
| | | <resultMap id="BaseResultMap" type="com.moral.api.entity.HistoryAqi"> |
| | | <result column="guid" property="guid"/> |
| | | <result column="time" property="time"/> |
| | | <result column="value" property="value"/> |
| | | <result column="json" property="json"/> |
| | | </resultMap> |
| | | |
| | | <insert id="insertHistoryAqi"> |
| | | insert into history_aqi values |
| | | INSERT INTO |
| | | history_aqi |
| | | VALUES |
| | | <foreach collection="list" item="item" separator=","> |
| | | (#{item.guid},#{item.time},#{item.value}) |
| | | (#{item.guid},#{item.time},#{item.json}) |
| | | </foreach> |
| | | </insert> |
| | | |
| | | </mapper> |