From 121a5b01a2461b5d9d5c188f9dd36c2e4673db9d Mon Sep 17 00:00:00 2001
From: jinpengyong <jpy123456>
Date: Mon, 28 Sep 2020 10:41:08 +0800
Subject: [PATCH] 实时风向与因子数据从同一个websokceket获取优化
---
src/main/resources/mapper/ForecastWeatherMapper.xml | 39 +++++++++++++++++++++++++++++++++++----
1 files changed, 35 insertions(+), 4 deletions(-)
diff --git a/src/main/resources/mapper/ForecastWeatherMapper.xml b/src/main/resources/mapper/ForecastWeatherMapper.xml
index a0bf96d..d9403c5 100644
--- a/src/main/resources/mapper/ForecastWeatherMapper.xml
+++ b/src/main/resources/mapper/ForecastWeatherMapper.xml
@@ -2,16 +2,16 @@
<!DOCTYPE mapper PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN" "http://mybatis.org/dtd/mybatis-3-mapper.dtd">
<mapper namespace="com.moral.mapper.ForecastWeatherMapper">
<resultMap id="BaseResultMap" type="com.moral.entity.ForecastWeather">
- <id column="monitor_point_id" property="monitorPointId" jdbcType="INTEGER"/>
+ <id column="city_code" property="cityCode" jdbcType="INTEGER"/>
</resultMap>
<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
+ json->'$.O3C' 'O3'
from forecast_weather
where time >= #{start}
AND time <![CDATA[<]]> #{end}
- AND monitor_point_id=#{monitorPointId}
+ AND city_code=#{cityCode}
</select>
<select id="getForecast" resultType="java.util.Map">
@@ -20,6 +20,37 @@
from forecast_weather
where time >= #{start}
AND time <![CDATA[<]]> #{end}
- AND monitor_point_id=#{monitorPointId}
+ AND city_code=#{cityCode}
+ ORDER BY
+ time
+ </select>
+
+ <update id="updateForecastWeather">
+ update forecast_weather set json=#{json}
+ where city_code=#{cityCode}
+ 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 city_code = #{cityCode}
+ </select>
+
+ <select id="getO38Hours" resultType="java.util.Map">
+ select
+ cast(AVG(json->'$.O3C') as UNSIGNED integer) 'O3_8H'
+ FROM
+ forecast_weather
+ WHERE
+ time >= #{start}
+ AND time <![CDATA[<]]> #{end}
+ AND city_code = #{cityCode}
</select>
</mapper>
\ No newline at end of file
--
Gitblit v1.8.0