You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
45 lines
1.5 KiB
45 lines
1.5 KiB
1 year ago
|
<?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.zc.business.mapper.DcTrafficSectionDataMapper">
|
||
|
|
||
|
<!-- 插入或更新交通路段数据 -->
|
||
|
<insert id="insertOrUpdate" parameterType="com.zc.business.domain.DcTrafficSectionData">
|
||
|
INSERT INTO
|
||
|
dc_traffic_section_data
|
||
|
(
|
||
|
id,
|
||
|
traffic_volume,
|
||
|
average_speed,
|
||
|
device_id,
|
||
|
statistical_date,
|
||
|
direction,
|
||
|
period_type,
|
||
|
stake_mark,
|
||
|
create_time
|
||
|
)
|
||
|
VALUES
|
||
|
(
|
||
|
#{id},
|
||
|
#{trafficVolume},
|
||
|
#{averageSpeed},
|
||
|
#{deviceId},
|
||
|
#{statisticalDate},
|
||
|
#{direction},
|
||
|
#{periodType},
|
||
|
#{stakeMark},
|
||
|
NOW())
|
||
|
ON DUPLICATE KEY UPDATE
|
||
|
traffic_volume = VALUES(traffic_volume),
|
||
|
average_speed = VALUES(average_speed),
|
||
|
device_id = VALUES(device_id),
|
||
|
statistical_date = VALUES(statistical_date),
|
||
|
direction = VALUES(direction),
|
||
|
period_type = VALUES(period_type),
|
||
|
stake_mark = VALUES(stake_mark),
|
||
|
update_time = VALUES(NOW())
|
||
|
</insert>
|
||
|
|
||
|
</mapper>
|