From 08fc154ca750b446e97b4b7764f0ffe130348f24 Mon Sep 17 00:00:00 2001
From: zhubaomin <zhubaomin>
Date: 星期二, 26 十一月 2024 11:25:40 +0800
Subject: [PATCH] 创建工单时通过mosquitto推送消息
---
pipIrr-platform/pipIrr-global/src/main/resources/mapper/UgRtuControllerMapper.xml | 48 +++++++++++++++++++++++++++++++++++++++++++-----
1 files changed, 43 insertions(+), 5 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..b7aa29e 100644
--- a/pipIrr-platform/pipIrr-global/src/main/resources/mapper/UgRtuControllerMapper.xml
+++ b/pipIrr-platform/pipIrr-global/src/main/resources/mapper/UgRtuControllerMapper.xml
@@ -1,7 +1,7 @@
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE mapper PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN" "http://mybatis.org/dtd/mybatis-3-mapper.dtd">
<mapper namespace="com.dy.pipIrrGlobal.daoRm.UgRtuControllerMapper">
- <resultMap id="BaseResultMap" type="com.dy.pipIrrGlobal.pojoRm.UgRtuController">
+ <resultMap id="BaseResultMap" type="com.dy.pipIrrGlobal.pojoUg.UgRtuController">
<!--@mbg.generated-->
<!--@Table ug_rtu_controller-->
<id column="id" jdbcType="BIGINT" property="id" />
@@ -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
@@ -130,7 +168,7 @@
where task_id = #{taskId,jdbcType=BIGINT}
</delete>
- <insert id="insert" parameterType="com.dy.pipIrrGlobal.pojoRm.UgRtuController">
+ <insert id="insert" parameterType="com.dy.pipIrrGlobal.pojoUg.UgRtuController">
<!--@mbg.generated-->
insert into ug_rtu_controller (id, task_id, controller_id,
rtu_addr)
@@ -139,7 +177,7 @@
#{isOver,jdbcType=TINYINT}, #{ugState,jdbcType=INTEGER},
#{overDt,jdbcType=TIMESTAMP})
</insert>
- <insert id="insertSelective" parameterType="com.dy.pipIrrGlobal.pojoRm.UgRtuController">
+ <insert id="insertSelective" parameterType="com.dy.pipIrrGlobal.pojoUg.UgRtuController">
<!--@mbg.generated-->
insert into ug_rtu_controller
<trim prefix="(" suffix=")" suffixOverrides=",">
@@ -189,7 +227,7 @@
</if>
</trim>
</insert>
- <update id="updateByPrimaryKeySelective" parameterType="com.dy.pipIrrGlobal.pojoRm.UgRtuController">
+ <update id="updateByPrimaryKeySelective" parameterType="com.dy.pipIrrGlobal.pojoUg.UgRtuController">
<!--@mbg.generated-->
update ug_rtu_controller
<set>
@@ -214,7 +252,7 @@
</set>
where id = #{id,jdbcType=BIGINT}
</update>
- <update id="updateByPrimaryKey" parameterType="com.dy.pipIrrGlobal.pojoRm.UgRtuController">
+ <update id="updateByPrimaryKey" parameterType="com.dy.pipIrrGlobal.pojoUg.UgRtuController">
<!--@mbg.generated-->
update ug_rtu_controller
set task_id = #{taskId,jdbcType=BIGINT},
--
Gitblit v1.8.0