|  |  | 
 |  |  | package com.dy.pipIrrGlobal.daoLargeScreen; | 
 |  |  |  | 
 |  |  | import com.baomidou.mybatisplus.core.mapper.BaseMapper; | 
 |  |  | import com.dy.pipIrrGlobal.voSpecial.VoTopXClient; | 
 |  |  | import com.dy.pipIrrGlobal.voSpecial.VoTopXIntake; | 
 |  |  | import org.apache.ibatis.annotations.Mapper; | 
 |  |  | import org.apache.ibatis.annotations.Param; | 
 |  |  |  | 
 |  |  | import java.util.Date; | 
 |  |  | import java.util.List; | 
 |  |  |  | 
 |  |  | /** | 
 |  |  |  * @Author: liurunyu | 
 |  |  | 
 |  |  |      */ | 
 |  |  |     Integer mTotalCountOfNeverAlarm() ; | 
 |  |  |  | 
 |  |  |  | 
 |  |  |  | 
 |  |  |  | 
 |  |  |     /** | 
 |  |  |      * 某日农户用水前X名 | 
 |  |  |      * @param idStart 起始id | 
 |  |  |      * @param idEnd 截止id | 
 |  |  |      * @param count 前几名 | 
 |  |  |      * @return 实体集合 | 
 |  |  |      */ | 
 |  |  |     List<VoTopXClient> topXClientAtCertainDay(@Param("idStart") Long idStart, @Param("idEnd") Long idEnd, @Param("count") int count) ; | 
 |  |  |  | 
 |  |  |     /** | 
 |  |  |      * 某日取水口用水前X名 | 
 |  |  |      * @param idStart 起始id | 
 |  |  |      * @param idEnd 截止id | 
 |  |  |      * @param count 前几名 | 
 |  |  |      * @return 实体集合 | 
 |  |  |      */ | 
 |  |  |     List<VoTopXIntake> topXIntakeAtCertainDay(@Param("idStart") Long idStart, @Param("idEnd") Long idEnd, @Param("count") int count) ; | 
 |  |  |  | 
 |  |  |  | 
 |  |  | } |