From 6956fffa1f06b01375081689c5da5a23a30963db Mon Sep 17 00:00:00 2001
From: jinpengyong <jpy123456>
Date: Wed, 05 Aug 2020 17:20:59 +0800
Subject: [PATCH] update
---
src/main/resources/mapper/RealWeatherMapper.xml | 11 +++++++++++
1 files changed, 11 insertions(+), 0 deletions(-)
diff --git a/src/main/resources/mapper/RealWeatherMapper.xml b/src/main/resources/mapper/RealWeatherMapper.xml
index ad86d99..80934c3 100644
--- a/src/main/resources/mapper/RealWeatherMapper.xml
+++ b/src/main/resources/mapper/RealWeatherMapper.xml
@@ -17,4 +17,15 @@
ORDER BY
time
</select>
+
+ <select id="getPrecip6Hour" resultType="java.util.Map">
+ select
+ round(sum(json->'$.precip'),2) 'precip6'
+ FROM
+ real_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