|
|
@ -65,7 +65,7 @@ PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN" |
|
|
|
<include refid="selectDcMeteorologicalDetectorDataVo"/> |
|
|
|
where id = #{id} |
|
|
|
</select> |
|
|
|
|
|
|
|
|
|
|
|
<insert id="insertDcMeteorologicalDetectorData" parameterType="DcMeteorologicalDetectorData" useGeneratedKeys="true" keyProperty="id"> |
|
|
|
insert into dc_meteorological_detector_data |
|
|
|
<trim prefix="(" suffix=")" suffixOverrides=","> |
|
|
@ -146,6 +146,44 @@ PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN" |
|
|
|
where id = #{id} |
|
|
|
</update> |
|
|
|
|
|
|
|
<insert id="insertIntermediateWarehouseData" parameterType="DcMeteorologicalDetectorData" useGeneratedKeys="true" keyProperty="id"> |
|
|
|
insert into meteorological_detector_data |
|
|
|
<trim prefix="(" suffix=")" suffixOverrides=","> |
|
|
|
<if test="iotDeviceId != null">device_id,</if> |
|
|
|
<if test="temperature != null">temperature,</if> |
|
|
|
<if test="humidity != null">humidity,</if> |
|
|
|
<if test="precipitationType != null">precipitation_type,</if> |
|
|
|
<if test="rainfall != null">rainfall,</if> |
|
|
|
<if test="roadSurfaceStatus != null">road_surface_status,</if> |
|
|
|
<if test="waterFilmThickness != null">water_film_thickness,</if> |
|
|
|
update_time |
|
|
|
</trim> |
|
|
|
<trim prefix="values (" suffix=")" suffixOverrides=","> |
|
|
|
<if test="iotDeviceId != null">#{iotDeviceId},</if> |
|
|
|
<if test="temperature != null">#{temperature},</if> |
|
|
|
<if test="humidity != null">#{humidity},</if> |
|
|
|
<if test="precipitationType != null">#{precipitationType},</if> |
|
|
|
<if test="rainfall != null">#{rainfall},</if> |
|
|
|
<if test="roadSurfaceStatus != null">#{roadSurfaceStatus},</if> |
|
|
|
<if test="waterFilmThickness != null">#{waterFilmThickness},</if> |
|
|
|
current_date |
|
|
|
</trim> |
|
|
|
</insert> |
|
|
|
|
|
|
|
<update id="updateIntermediateWarehouseData" parameterType="DcMeteorologicalDetectorData"> |
|
|
|
update meteorological_detector_data |
|
|
|
<trim prefix="SET" suffixOverrides=","> |
|
|
|
<if test="temperature != null">temperature = #{temperature},</if> |
|
|
|
<if test="humidity != null">humidity = #{humidity},</if> |
|
|
|
<if test="precipitationType != null">precipitation_type = #{precipitationType},</if> |
|
|
|
<if test="rainfall != null">rainfall = #{rainfall},</if> |
|
|
|
<if test="roadSurfaceStatus != null">road_surface_status = #{roadSurfaceStatus},</if> |
|
|
|
<if test="waterFilmThickness != null">water_film_thickness = #{waterFilmThickness},</if> |
|
|
|
update_time = current_date |
|
|
|
</trim> |
|
|
|
where device_id = #{iotDeviceId} |
|
|
|
</update> |
|
|
|
|
|
|
|
<delete id="deleteDcMeteorologicalDetectorDataById" parameterType="Long"> |
|
|
|
delete from dc_meteorological_detector_data where id = #{id} |
|
|
|
</delete> |
|
|
|