|  |  | 
 |  |  | package com.dy.pipIrrGlobal.daoPr; | 
 |  |  |  | 
 |  |  | import com.dy.common.webUtil.QueryResultVo; | 
 |  |  | import com.dy.pipIrrGlobal.pojoPr.PrFlowMonitoring; | 
 |  |  | import com.dy.pipIrrGlobal.pojoPr.PrIntake; | 
 |  |  | import com.dy.pipIrrGlobal.voPr.VoFlowMonitoring; | 
 |  |  | import com.dy.pipIrrGlobal.voPr.VoIntake; | 
 |  |  | import org.apache.ibatis.annotations.Param; | 
 |  |  |  | 
 |  |  | import java.util.List; | 
 |  |  | import java.util.Map; | 
 |  |  |  | 
 |  |  | /** | 
 |  |  |  * @author ZhuBaoMin | 
 |  |  | 
 |  |  |  | 
 |  |  |     /** | 
 |  |  |      * 根据监测站编号删除监测站 | 
 |  |  |      * | 
 |  |  |      * @param flowMonitoringId | 
 |  |  |      * @return | 
 |  |  |      */ | 
 |  |  |     Integer deleteFlowMonitoringById(@Param("flowMonitoringId") Long flowMonitoringId); | 
 |  |  |  | 
 |  |  |     /** | 
 |  |  |      * 根据监测站编号获取未删除的监测站数量 | 
 |  |  |      * | 
 |  |  |      * @param flowMonitoringId | 
 |  |  |      * @return | 
 |  |  |      */ | 
 |  |  |     Integer getRecordCountOfFlowMonitoringByFlowMonitoringId(@Param("flowMonitoringId") Long flowMonitoringId); | 
 |  |  |  | 
 |  |  |     /** | 
 |  |  |      * 根据监测站 名称 绑定状态 获取未删除的监测站数量 | 
 |  |  |      * | 
 |  |  |      * @param params | 
 |  |  |      * @return | 
 |  |  |      */ | 
 |  |  |     Integer getRecordCountOfFlowMonitoring(Map<?, ?> params); | 
 |  |  |  | 
 |  |  |     /** | 
 |  |  |      * 根据指定条件获取流量监测站实体记录 | 
 |  |  |      * | 
 |  |  |      * @param params | 
 |  |  |      * @return 实体集合 | 
 |  |  |      */ | 
 |  |  |     List<VoFlowMonitoring> getPrFlowMonitoring(Map<?, ?> params); | 
 |  |  |  | 
 |  |  |     /** | 
 |  |  |      * 查询全部流量监测站实体记录 | 
 |  |  |      * | 
 |  |  |      * @return 实体集合 | 
 |  |  |      */ | 
 |  |  |     List<PrFlowMonitoring> selectAll(); | 
 |  |  |  | 
 |  |  |  | 
 |  |  | } |