From 990782ab2c75805ef0390e40255ca817a02aa0bd Mon Sep 17 00:00:00 2001
From: ‘liusuyi’ <1951119284@qq.com>
Date: 星期一, 16 十月 2023 10:35:49 +0800
Subject: [PATCH] 提交
---
ard-work/src/main/resources/mapper/device/ArdTowersMapper.xml | 47 ++++++++++++++++++++++++++++++++++++++++++++++-
1 files changed, 46 insertions(+), 1 deletions(-)
diff --git a/ard-work/src/main/resources/mapper/device/ArdTowersMapper.xml b/ard-work/src/main/resources/mapper/device/ArdTowersMapper.xml
index eba0856..1e3486a 100644
--- a/ard-work/src/main/resources/mapper/device/ArdTowersMapper.xml
+++ b/ard-work/src/main/resources/mapper/device/ArdTowersMapper.xml
@@ -16,6 +16,15 @@
<result property="createTime" column="create_time"/>
<result property="updateBy" column="update_by"/>
<result property="updateTime" column="update_time"/>
+ <result property="direction" column="direction"/>
+ <result property="towerScale" column="tower_scale"/>
+ <result property="towerPath" column="tower_path"/>
+ <result property="peOffset" column="pe_offset"/>
+ <result property="peScale" column="pe_scale"/>
+ <result property="pePath" column="pe_path"/>
+ <result property="radarOffset" column="radar_offset"/>
+ <result property="radarScale" column="radar_scale"/>
+ <result property="radarPath" column="radar_path"/>
</resultMap>
<sql id="selectArdTowersVo">
@@ -29,7 +38,16 @@
c.create_by,
c.create_time,
c.update_by,
- c.update_time
+ c.update_time,
+ c.direction,
+ c.tower_scale,
+ c.tower_path,
+ c.pe_offset,
+ c.pe_scale,
+ c.pe_path,
+ c.radar_offset,
+ c.radar_scale,
+ c.radar_path
from ard_towers c
left join sys_dept d on d.dept_id = c.dept_id
left join sys_user u on u.user_id = c.user_id
@@ -70,6 +88,15 @@
<if test="createTime != null">create_time,</if>
<if test="updateBy != null">update_by,</if>
<if test="updateTime != null">update_time,</if>
+ <if test="direction != null">direction,</if>
+ <if test="towerScale != null">tower_scale,</if>
+ <if test="towerPath != null">tower_path,</if>
+ <if test="peOffset != null">pe_offset,</if>
+ <if test="peScale != null">pe_scale,</if>
+ <if test="pePath != null">pe_path,</if>
+ <if test="radarOffset != null">radar_offset,</if>
+ <if test="radarScale != null">radar_scale,</if>
+ <if test="radarPath != null">radar_path,</if>
</trim>
<trim prefix="values (" suffix=")" suffixOverrides=",">
<if test="id != null">#{id},</if>
@@ -83,6 +110,15 @@
<if test="createTime != null">#{createTime},</if>
<if test="updateBy != null">#{updateBy},</if>
<if test="updateTime != null">#{updateTime},</if>
+ <if test="direction != null">#{direction},</if>
+ <if test="towerScale != null">#{towerScale},</if>
+ <if test="towerPath != null">#{towerPath},</if>
+ <if test="peOffset != null">#{peOffset},</if>
+ <if test="peScale != null">#{peScale},</if>
+ <if test="pePath != null">#{pePath},</if>
+ <if test="radarOffset != null">#{radarOffset},</if>
+ <if test="radarScale != null">#{radarScale},</if>
+ <if test="radarPath != null">#{radarPath},</if>
</trim>
</insert>
@@ -99,6 +135,15 @@
<if test="createTime != null">create_time = #{createTime},</if>
<if test="updateBy != null">update_by = #{updateBy},</if>
<if test="updateTime != null">update_time = #{updateTime},</if>
+ <if test="direction != null">direction=#{direction},</if>
+ <if test="towerScale != null">tower_scale=#{towerScale},</if>
+ <if test="towerPath != null">tower_path=#{towerPath},</if>
+ <if test="peOffset != null">pe_offset=#{peOffset},</if>
+ <if test="peScale != null">pe_scale=#{peScale},</if>
+ <if test="pePath != null">pe_path=#{pePath},</if>
+ <if test="radarOffset != null">radar_offset=#{radarOffset},</if>
+ <if test="radarScale != null">radar_scale=#{radarScale},</if>
+ <if test="radarPath != null">radar_path=#{radarPath},</if>
</trim>
where id = #{id}
</update>
--
Gitblit v1.9.3