From d3b43d50df28c4fe27c104dcd146d35b2bad4d20 Mon Sep 17 00:00:00 2001
From: Riku <risaku@163.com>
Date: 星期三, 11 六月 2025 22:48:01 +0800
Subject: [PATCH] 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