|  |  |  | 
|---|
|  |  |  | package com.dy.pipIrrGlobal.daoLargeScreen; | 
|---|
|  |  |  |  | 
|---|
|  |  |  | import com.baomidou.mybatisplus.core.mapper.BaseMapper; | 
|---|
|  |  |  | import com.dy.pipIrrGlobal.voMd.VoCrops; | 
|---|
|  |  |  | import com.dy.pipIrrGlobal.voSpecial.VoTopXClient; | 
|---|
|  |  |  | import com.dy.pipIrrGlobal.voSpecial.VoTopXIntake; | 
|---|
|  |  |  | import com.dy.pipIrrGlobal.voMd.VoCropsSimple; | 
|---|
|  |  |  | import com.dy.pipIrrGlobal.voMd.VoEt0Simple; | 
|---|
|  |  |  | 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) ; | 
|---|
|  |  |  |  | 
|---|
|  |  |  |  | 
|---|
|  |  |  | /** | 
|---|
|  |  |  | * 所有作物 | 
|---|
|  |  |  | * @return 实体集合 | 
|---|
|  |  |  | */ | 
|---|
|  |  |  | List<VoCropsSimple> allCropts() ; | 
|---|
|  |  |  |  | 
|---|
|  |  |  |  | 
|---|
|  |  |  | /** | 
|---|
|  |  |  | * 所有作物 | 
|---|
|  |  |  | * @return 实体集合 | 
|---|
|  |  |  | */ | 
|---|
|  |  |  | List<VoEt0Simple> et0InWeek(@Param("cropId") Long cropId, @Param("startDate")String startDate, @Param("endDate")String endDate) ; | 
|---|
|  |  |  |  | 
|---|
|  |  |  |  | 
|---|
|  |  |  |  | 
|---|
|  |  |  | } | 
|---|