|  |  |  | 
|---|
|  |  |  | <?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" /> | 
|---|
|  |  |  | 
|---|
|  |  |  | </where> | 
|---|
|  |  |  | </select> | 
|---|
|  |  |  |  | 
|---|
|  |  |  |  | 
|---|
|  |  |  | <select id="selectControllerUpgradeResultsCount" resultType="java.lang.Long"> | 
|---|
|  |  |  | <!--@mbg.generated--> | 
|---|
|  |  |  | select | 
|---|
|  |  |  | count(*) | 
|---|
|  |  |  | from ug_rtu_controller ugCon | 
|---|
|  |  |  | inner join ug_rtu_task ugTask on ugCon.task_id = ugTask.id | 
|---|
|  |  |  | inner join pr_controller con on ugCon.controller_id = con.id | 
|---|
|  |  |  | inner join pr_intake inta on con.intakeId = inta.id | 
|---|
|  |  |  | <where> | 
|---|
|  |  |  | <if test="taskId != null"> | 
|---|
|  |  |  | AND ugCon.task_id = #{taskId,jdbcType=BIGINT} | 
|---|
|  |  |  | </if> | 
|---|
|  |  |  | <if test="intakeNum != null and intakeNum != ''"> | 
|---|
|  |  |  | AND inta.name = #{intakeNum,jdbcType=VARCHAR} | 
|---|
|  |  |  | </if> | 
|---|
|  |  |  | <if test="rtuAddr != null and rtuAddr != ''"> | 
|---|
|  |  |  | AND ugCon.rtu_addr = #{rtuAddr,jdbcType=VARCHAR} | 
|---|
|  |  |  | </if> | 
|---|
|  |  |  | <if test="state != null and state == 1"> | 
|---|
|  |  |  | AND ugCon.ug_state = 2 | 
|---|
|  |  |  | </if> | 
|---|
|  |  |  | <if test="state != null and state == 0"> | 
|---|
|  |  |  | AND ugCon.ug_state != 2 | 
|---|
|  |  |  | </if> | 
|---|
|  |  |  | <if test="fail != null"> | 
|---|
|  |  |  | AND ugCon.ug_state = #{fail,jdbcType=INTEGER} | 
|---|
|  |  |  | </if> | 
|---|
|  |  |  | </where> | 
|---|
|  |  |  | </select> | 
|---|
|  |  |  |  | 
|---|
|  |  |  | <select id="selectControllerUpgradeResults" resultType="com.dy.pipIrrGlobal.voUg.VoUgResult"> | 
|---|
|  |  |  | <!--@mbg.generated--> | 
|---|
|  |  |  | select | 
|---|
|  |  |  | ugCon.id as id, | 
|---|
|  |  |  | inta.name as intakeNum, | 
|---|
|  |  |  | ugCon.rtu_addr as rtuAddr, | 
|---|
|  |  |  | ugCon.is_over as isOver, | 
|---|
|  |  |  | ugCon.ug_state as ugState, | 
|---|
|  |  |  | ugCon.over_dt as overDt | 
|---|
|  |  |  | from ug_rtu_controller ugCon | 
|---|
|  |  |  | inner join ug_rtu_task ugTask on ugCon.task_id = ugTask.id | 
|---|
|  |  |  | inner join pr_controller con on ugCon.controller_id = con.id | 
|---|
|  |  |  | inner join pr_intake inta on con.intakeId = inta.id | 
|---|
|  |  |  | <where> | 
|---|
|  |  |  | <if test="taskId != null"> | 
|---|
|  |  |  | AND ugCon.task_id = #{taskId,jdbcType=BIGINT} | 
|---|
|  |  |  | </if> | 
|---|
|  |  |  | <if test="intakeNum != null and intakeNum != ''"> | 
|---|
|  |  |  | AND inta.name = #{intakeNum,jdbcType=VARCHAR} | 
|---|
|  |  |  | </if> | 
|---|
|  |  |  | <if test="rtuAddr != null and rtuAddr != ''"> | 
|---|
|  |  |  | AND ugCon.rtu_addr = #{rtuAddr,jdbcType=VARCHAR} | 
|---|
|  |  |  | </if> | 
|---|
|  |  |  | <if test="state != null and state == 1"> | 
|---|
|  |  |  | AND ugCon.ug_state = 2 | 
|---|
|  |  |  | </if> | 
|---|
|  |  |  | <if test="state != null and state == 0"> | 
|---|
|  |  |  | AND ugCon.ug_state != 2 | 
|---|
|  |  |  | </if> | 
|---|
|  |  |  | <if test="fail != null"> | 
|---|
|  |  |  | AND ugCon.ug_state = #{fail,jdbcType=INTEGER} | 
|---|
|  |  |  | </if> | 
|---|
|  |  |  | </where> | 
|---|
|  |  |  | ORDER BY ugCon.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 | 
|---|
|  |  |  | 
|---|
|  |  |  | 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) | 
|---|
|  |  |  | 
|---|
|  |  |  | #{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=","> | 
|---|
|  |  |  | 
|---|
|  |  |  | </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> | 
|---|
|  |  |  | 
|---|
|  |  |  | </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}, | 
|---|