From e133600480d5f688a8375db7708fe531b4726f4a Mon Sep 17 00:00:00 2001 From: feiyu02 <risaku@163.com> Date: 星期五, 07 二月 2025 17:38:38 +0800 Subject: [PATCH] 1. 新增卫星网格拆分、遥测数据拆分映射功能 --- src/main/resources/mapper/GridGroupMapper.xml | 5 ++++- 1 files changed, 4 insertions(+), 1 deletions(-) diff --git a/src/main/resources/mapper/GridGroupMapper.xml b/src/main/resources/mapper/GridGroupMapper.xml index b0e9e5a..c7a1641 100644 --- a/src/main/resources/mapper/GridGroupMapper.xml +++ b/src/main/resources/mapper/GridGroupMapper.xml @@ -16,12 +16,15 @@ <result column="town_code" jdbcType="VARCHAR" property="townCode" /> <result column="town_name" jdbcType="VARCHAR" property="townName" /> <result column="create_time" jdbcType="TIMESTAMP" property="createTime" /> + <result column="length" jdbcType="DOUBLE" property="length" /> + <result column="type" jdbcType="VARCHAR" property="type" /> + <result column="father_group_id" jdbcType="INTEGER" property="fatherGroupId" /> </resultMap> <sql id="Base_Column_List"> <!-- WARNING - @mbg.generated --> id, name, province_code, province_name, city_code, city_name, district_code, district_name, - town_code, town_name, create_time + town_code, town_name, create_time, length, type, father_group_id </sql> </mapper> \ No newline at end of file -- Gitblit v1.9.3