|  |  |  | 
|---|
|  |  |  | </if> | 
|---|
|  |  |  | </trim> | 
|---|
|  |  |  | </select> | 
|---|
|  |  |  |  | 
|---|
|  |  |  | <!--获取最近未报数的取水口数量--> | 
|---|
|  |  |  | <select id="getUnReportedIntakesCount" resultType="java.lang.Long"> | 
|---|
|  |  |  | SELECT | 
|---|
|  |  |  | count(*) | 
|---|
|  |  |  | FROM  pr_intake pit | 
|---|
|  |  |  | LEFT JOIN `rm_on_hour_report_last` rohrl ON pit.id = rohrl.intake_id | 
|---|
|  |  |  | LEFT JOIN pr_controller pct ON pit.id = pct.intakeId | 
|---|
|  |  |  | WHERE  rohrl.id is NULL | 
|---|
|  |  |  | <if test="timeStart != null and timeStart != '' "> | 
|---|
|  |  |  | OR rohrl.rtu_dt  < #{timeStart} | 
|---|
|  |  |  | </if> | 
|---|
|  |  |  | <!--        <if test="timeStop != null and timeStop != '' ">--> | 
|---|
|  |  |  | <!--            OR rohrl.rtu_dt > #{timeStop}--> | 
|---|
|  |  |  | <!--        </if>--> | 
|---|
|  |  |  | ORDER BY rtu_dt ASC | 
|---|
|  |  |  | </select> | 
|---|
|  |  |  | <!--获取最近未报数的取水口--> | 
|---|
|  |  |  | <select id="getUnReportedIntakes" resultType="com.dy.pipIrrGlobal.voSt.VoIntakeUnReported"> | 
|---|
|  |  |  | SELECT | 
|---|
|  |  |  | pit.`name` intakeNum, | 
|---|
|  |  |  | pct.rtuAddr, | 
|---|
|  |  |  | rohrl.rtu_dt rtuDt | 
|---|
|  |  |  | FROM  pr_intake pit | 
|---|
|  |  |  | LEFT JOIN `rm_on_hour_report_last` rohrl ON pit.id = rohrl.intake_id | 
|---|
|  |  |  | LEFT JOIN pr_controller pct ON pit.id = pct.intakeId | 
|---|
|  |  |  | WHERE  rohrl.id is NULL | 
|---|
|  |  |  | <if test="timeStart != null"> | 
|---|
|  |  |  | OR rohrl.rtu_dt  < #{timeStart} | 
|---|
|  |  |  | </if> | 
|---|
|  |  |  | <!--        <if test="timeStop != null">--> | 
|---|
|  |  |  | <!--            OR rohrl.rtu_dt > #{timeStop}--> | 
|---|
|  |  |  | <!--        </if>--> | 
|---|
|  |  |  | ORDER BY rtu_dt ASC | 
|---|
|  |  |  | <trim prefix="limit "> | 
|---|
|  |  |  | <if test="start != null and count != null"> | 
|---|
|  |  |  | #{start,javaType=Integer,jdbcType=INTEGER}, #{count,javaType=Integer,jdbcType=INTEGER} | 
|---|
|  |  |  | </if> | 
|---|
|  |  |  | </trim> | 
|---|
|  |  |  | </select> | 
|---|
|  |  |  | </mapper> | 
|---|