From b1384c4959a4486d391369c4e7a58c4b4b0e9b9c Mon Sep 17 00:00:00 2001
From: zhubaomin <zhubaomin>
Date: 星期三, 13 十一月 2024 17:41:23 +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 |   38 ++++++++++++++++++++++++++++++++++++++
 1 files changed, 38 insertions(+), 0 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 a0015a4..60f1766 100644
--- a/pipIrr-platform/pipIrr-global/src/main/resources/mapper/UgRtuControllerMapper.xml
+++ b/pipIrr-platform/pipIrr-global/src/main/resources/mapper/UgRtuControllerMapper.xml
@@ -120,6 +120,44 @@
     </where>
   </select>
 
+
+  <select id="selectControllerUpgradeResultsCount" resultType="java.lang.Long">
+    <!--@mbg.generated-->
+    select
+    count(*)
+    from ug_rtu_controller
+    <where>
+      <if test="taskId != null">
+        AND task_id = #{taskId,jdbcType=BIGINT}
+      </if>
+    </where>
+  </select>
+
+  <select id="selectControllerUpgradeResults" resultType="com.dy.pipIrrGlobal.voUg.VoUgResult">
+    <!--@mbg.generated-->
+    select
+    ctb.id as id,
+    inTb.name as intakeNum,
+    ctb.rtu_addr as rtuAddr,
+    ctb.is_over as isOver,
+    ctb.ug_state as ugState,
+    ctb.over_dt as overDt
+    from ug_rtu_controller ctb
+    inner join pr_intake inTb on ctb.task_id = inTb.id
+    <where>
+      <if test="taskId != null">
+        AND ctb.task_id = #{taskId,jdbcType=BIGINT}
+      </if>
+    </where>
+    ORDER BY ctb.id ASC
+    <trim prefix="limit " >
+      <if test="start != null and count != null">
+        #{start,javaType=Integer,jdbcType=INTEGER}, #{count,javaType=Integer,jdbcType=INTEGER}
+      </if>
+    </trim>
+  </select>
+
+
   <delete id="deleteByPrimaryKey" parameterType="java.lang.Long">
     <!--@mbg.generated-->
     delete from ug_rtu_controller

--
Gitblit v1.8.0