| | |
| | | </sql> |
| | | <select id="selectByPrimaryKey" parameterType="java.lang.Long" resultMap="BaseResultMap"> |
| | | <!--@mbg.generated--> |
| | | select |
| | | select |
| | | <include refid="Base_Column_List" /> |
| | | from pr_controller |
| | | where id = #{id,jdbcType=BIGINT} |
| | |
| | | CAST(con.id AS char) AS id, |
| | | con.rtuAddr AS rtuAddr, |
| | | inta.name AS intakeName, |
| | | "在线" AS onlineState, |
| | | (SELECT COUNT(*) FROM pr_intake_controller WHERE controllerId = con.id AND intakeId = inta.id AND operateType = 1) AS bindNumber, |
| | | con.findDt |
| | | con.findDt AS findDt |
| | | FROM pr_controller con |
| | | INNER JOIN pr_intake_controller ic ON ic.controllerId = con.id |
| | | INNER JOIN pr_intake inta ON con.intakeId = inta.id |
| | |
| | | SELECT COUNT(*) AS recordCount FROM pr_controller WHERE deleted = 0 AND id = ${controllerId} |
| | | </select> |
| | | |
| | | <!--根据控制器编号获取已绑定记录数--> |
| | | <!--根据流浪控制器编号获取已绑定记录数--> |
| | | <select id="getBindedCount" resultType="java.lang.Integer"> |
| | | SELECT COUNT(*) AS recordCount FROM pr_controller WHERE rtuAddr = (SELECT rtuAddr FROM pr_controller_tramp WHERE id = ${controllerId}) AND intakeId IS NOT NULL |
| | | </select> |
| | | |
| | | <!--根据取水口ID或阀控器地址获取阀控器对象--> |
| | | <select id="getRtu" resultType="com.dy.pipIrrGlobal.pojoPr.PrController"> |
| | | SELECT * FROM pr_controller |
| | | <where> |
| | | AND deleted = 0 |
| | | <if test = "intakeId != null"> |
| | | AND intakeId = #{intakeId} |
| | | </if> |
| | | <if test = "rtuAddr != null"> |
| | | AND rtuAddr = #{rtuAddr} |
| | | </if> |
| | | </where> |
| | | LIMIT 0,1 |
| | | </select> |
| | | </mapper> |