From 91c1c308abec43a67335cdebb574940ed41b09cf Mon Sep 17 00:00:00 2001
From: jinpengyong <jpy123456>
Date: Wed, 05 Aug 2020 16:56:16 +0800
Subject: [PATCH] 修改预测参数,提交到数据库

---
 src/main/resources/mapper/ForecastWeatherMapper.xml |   22 +++++++++++++++++++++-
 1 files changed, 21 insertions(+), 1 deletions(-)

diff --git a/src/main/resources/mapper/ForecastWeatherMapper.xml b/src/main/resources/mapper/ForecastWeatherMapper.xml
index a0bf96d..2e04576 100644
--- a/src/main/resources/mapper/ForecastWeatherMapper.xml
+++ b/src/main/resources/mapper/ForecastWeatherMapper.xml
@@ -7,7 +7,7 @@
     <select id="getForecastHour" resultType="java.util.Map">
         SELECT
         DATE_FORMAT(time, #{typeFormat}) time,
-        (case when result is null then json->'$.tem' else result end) result
+        (case when result is null then json->'$.temp' else result end) result
         from forecast_weather
         where time >= #{start}
         AND time <![CDATA[<]]> #{end}
@@ -21,5 +21,25 @@
         where time >= #{start}
         AND time <![CDATA[<]]> #{end}
         AND monitor_point_id=#{monitorPointId}
+        ORDER BY
+        time
+    </select>
+
+    <update id="updateForecastWeather">
+        update forecast_weather set json=#{json}
+        where monitor_point_id=#{monitorPointId}
+        and time=#{time}
+    </update>
+
+
+    <select id="getPrecip6Hour" resultType="java.util.Map">
+    select
+    round(sum(json->'$.precip'),2) 'precip6'
+    FROM
+    forecast_weather
+    WHERE
+    time >= #{start}
+    AND time <![CDATA[<]]> #{end}
+    AND monitor_point_id = #{monitorPointId}
     </select>
 </mapper>
\ No newline at end of file

--
Gitblit v1.8.0