From b10c22af595bd995e56946bff63b8f2f984b13e8 Mon Sep 17 00:00:00 2001 From: feiyu02 <risaku@163.com> Date: 星期四, 14 八月 2025 17:25:05 +0800 Subject: [PATCH] 2025.8.14 1. 动态溯源模块添加滑动平均异常计算(调试中) --- src/main/resources/mapper/GridDataMapper.xml | 19 ++++++++++++++++++- 1 files changed, 18 insertions(+), 1 deletions(-) diff --git a/src/main/resources/mapper/GridDataMapper.xml b/src/main/resources/mapper/GridDataMapper.xml index 188f9d0..aba0c00 100644 --- a/src/main/resources/mapper/GridDataMapper.xml +++ b/src/main/resources/mapper/GridDataMapper.xml @@ -10,11 +10,28 @@ <result column="data_time" jdbcType="TIMESTAMP" property="dataTime" /> <result column="type" jdbcType="TINYINT" property="type" /> <result column="mix_data_id" jdbcType="VARCHAR" property="mixDataId" /> + <result column="zone" jdbcType="VARCHAR" property="zone" /> + <result column="pollution_degree" jdbcType="VARCHAR" property="pollutionDegree" /> + <result column="pollution_degree_index" jdbcType="INTEGER" property="pollutionDegreeIndex" /> + <result column="mission_code" jdbcType="VARCHAR" property="missionCode" /> + <result column="province_code" jdbcType="VARCHAR" property="provinceCode" /> + <result column="province_name" jdbcType="VARCHAR" property="provinceName" /> + <result column="city_code" jdbcType="VARCHAR" property="cityCode" /> + <result column="city_name" jdbcType="VARCHAR" property="cityName" /> + <result column="district_code" jdbcType="VARCHAR" property="districtCode" /> + <result column="district_name" jdbcType="VARCHAR" property="districtName" /> + <result column="town_code" jdbcType="VARCHAR" property="townCode" /> + <result column="town_name" jdbcType="VARCHAR" property="townName" /> + <result column="day_time_period" jdbcType="VARCHAR" property="dayTimePeriod" /> + <result column="day_time_period_start" jdbcType="TIMESTAMP" property="dayTimePeriodStart" /> + <result column="day_time_period_end" jdbcType="TIMESTAMP" property="dayTimePeriodEnd" /> </resultMap> <sql id="Base_Column_List"> <!-- WARNING - @mbg.generated --> - id, group_id, data_time, type, mix_data_id + id, group_id, data_time, type, mix_data_id, zone, pollution_degree, pollution_degree_index, + mission_code, province_code, province_name, city_code, city_name, district_code, + district_name, town_code, town_name, day_time_period, day_time_period_start, day_time_period_end </sql> </mapper> \ No newline at end of file -- Gitblit v1.9.3