From 9312cee2191aabf6043356e2927ca692a57921ec Mon Sep 17 00:00:00 2001
From: zhubaomin <zhubaomin>
Date: 星期三, 13 十一月 2024 16:34:29 +0800
Subject: [PATCH] Merge branch 'master' of http://8.140.179.55:20000/r/pipIrr-SV

---
 pipIrr-platform/pipIrr-global/src/main/resources/mapper/UgRtuControllerMapper.xml |   53 +++++++++++++++++++++++++++++++++++++++++++++++++----
 1 files changed, 49 insertions(+), 4 deletions(-)

diff --git a/pipIrr-platform/pipIrr-global/src/main/resources/mapper/UgRtuControllerMapper.xml b/pipIrr-platform/pipIrr-global/src/main/resources/mapper/UgRtuControllerMapper.xml
index 4f7c663..a0015a4 100644
--- a/pipIrr-platform/pipIrr-global/src/main/resources/mapper/UgRtuControllerMapper.xml
+++ b/pipIrr-platform/pipIrr-global/src/main/resources/mapper/UgRtuControllerMapper.xml
@@ -8,10 +8,13 @@
     <result column="task_id" jdbcType="BIGINT" property="taskId" />
     <result column="controller_id" jdbcType="BIGINT" property="controllerId" />
     <result column="rtu_addr" jdbcType="VARCHAR" property="rtuAddr" />
+    <result column="is_over" jdbcType="TINYINT" property="isOver" />
+    <result column="ug_state" jdbcType="INTEGER" property="ugState" />
+    <result column="over_dt" jdbcType="TIMESTAMP" property="overDt" />
   </resultMap>
   <sql id="Base_Column_List">
     <!--@mbg.generated-->
-    id, task_id, controller_id, rtu_addr
+    id, task_id, controller_id, rtu_addr, is_over, ug_state, over_dt
   </sql>
   <select id="selectByPrimaryKey" parameterType="java.lang.Long" resultMap="BaseResultMap">
     <!--@mbg.generated-->
@@ -131,8 +134,10 @@
     <!--@mbg.generated-->
     insert into ug_rtu_controller (id, task_id, controller_id, 
       rtu_addr)
-    values (#{id,jdbcType=BIGINT}, #{taskId,jdbcType=BIGINT}, #{controllerId,jdbcType=BIGINT}, 
-      #{rtuAddr,jdbcType=VARCHAR})
+    values (#{id,jdbcType=BIGINT}, #{taskId,jdbcType=BIGINT},
+    #{controllerId,jdbcType=BIGINT}, #{rtuAddr,jdbcType=VARCHAR},
+    #{isOver,jdbcType=TINYINT}, #{ugState,jdbcType=INTEGER},
+    #{overDt,jdbcType=TIMESTAMP})
   </insert>
   <insert id="insertSelective" parameterType="com.dy.pipIrrGlobal.pojoRm.UgRtuController">
     <!--@mbg.generated-->
@@ -150,6 +155,15 @@
       <if test="rtuAddr != null">
         rtu_addr,
       </if>
+      <if test="isOver != null">
+        is_over,
+      </if>
+      <if test="ugState != null">
+        ug_state,
+      </if>
+      <if test="overDt != null">
+        over_dt,
+      </if>
     </trim>
     <trim prefix="values (" suffix=")" suffixOverrides=",">
       <if test="id != null">
@@ -163,6 +177,15 @@
       </if>
       <if test="rtuAddr != null">
         #{rtuAddr,jdbcType=VARCHAR},
+      </if>
+      <if test="isOver != null">
+        #{isOver,jdbcType=TINYINT},
+      </if>
+      <if test="ugState != null">
+        #{ugState,jdbcType=INTEGER},
+      </if>
+      <if test="overDt != null">
+        #{overDt,jdbcType=TIMESTAMP},
       </if>
     </trim>
   </insert>
@@ -179,6 +202,15 @@
       <if test="rtuAddr != null">
         rtu_addr = #{rtuAddr,jdbcType=VARCHAR},
       </if>
+      <if test="isOver != null">
+        is_over = #{isOver,jdbcType=TINYINT},
+      </if>
+      <if test="ugState != null">
+        ug_state = #{isOver,jdbcType=INTEGER},
+      </if>
+      <if test="overDt != null">
+        over_dt = #{isOver,jdbcType=TIMESTAMP},
+      </if>
     </set>
     where id = #{id,jdbcType=BIGINT}
   </update>
@@ -187,7 +219,20 @@
     update ug_rtu_controller
     set task_id = #{taskId,jdbcType=BIGINT},
       controller_id = #{controllerId,jdbcType=BIGINT},
-      rtu_addr = #{rtuAddr,jdbcType=VARCHAR}
+      rtu_addr = #{rtuAddr,jdbcType=VARCHAR},
+      is_over = #{isOver,jdbcType=TINYINT},
+      ug_state = #{ugState,jdbcType=INTEGER},
+      over_dt = #{overDt,jdbcType=TIMESTAMP}
     where id = #{id,jdbcType=BIGINT}
   </update>
+  <update id="updateRtuUpgradeState" >
+    <!--@mbg.generated-->
+    update ug_rtu_controller
+    set is_over = #{isOver,jdbcType=TINYINT},
+    ug_state = #{state,jdbcType=INTEGER},
+    over_dt = #{overDt,jdbcType=TIMESTAMP}
+    where task_id = #{taskId,jdbcType=BIGINT}
+    and rtu_addr = #{rtuAddr,jdbcType=VARCHAR}
+  </update>
+
 </mapper>
\ No newline at end of file

--
Gitblit v1.8.0