|  |  | 
 |  |  | import com.baomidou.mybatisplus.core.mapper.BaseMapper; | 
 |  |  | import com.dy.pipIrrGlobal.pojoRm.RmIntakeAmountDay; | 
 |  |  | import com.dy.pipIrrGlobal.voRm.VoIntakeAmountDay; | 
 |  |  | import com.dy.pipIrrGlobal.voSt.VoDayIntakeAmount; | 
 |  |  | import com.dy.pipIrrGlobal.voSt.VoIntakeAmountStatistics; | 
 |  |  | import com.dy.pipIrrGlobal.voSt.VoIntakeLossStatistics; | 
 |  |  | import com.dy.pipIrrGlobal.voSt.VoMonthAmount; | 
 |  |  | import org.apache.ibatis.annotations.Mapper; | 
 |  |  | import org.apache.ibatis.annotations.Param; | 
 |  |  |  | 
 |  |  | 
 |  |  |      */ | 
 |  |  |     List<VoIntakeAmountStatistics> statisticsByIntake(@Param("startId")Long statisticsStartId, @Param("endId")Long statisticsEndId) ; | 
 |  |  |  | 
 |  |  |     /** | 
 |  |  |      * 指定月份各天用水量记录数量 | 
 |  |  |      * @param params | 
 |  |  |      * @return | 
 |  |  |      */ | 
 |  |  |     Long getDayIntakeAmountCount(Map<?, ?> params); | 
 |  |  |  | 
 |  |  |     /** | 
 |  |  |      * 统计指定月份各天用水量 | 
 |  |  |      * @param params | 
 |  |  |      * @return | 
 |  |  |      */ | 
 |  |  |     List<VoDayIntakeAmount> getDayIntakeAmount(Map<?, ?> params); | 
 |  |  |  | 
 |  |  |     /** | 
 |  |  |      * 统计指定年份各月用水量记录数量 | 
 |  |  |      * @param params | 
 |  |  |      * @return | 
 |  |  |      */ | 
 |  |  |     Long getMonthIntakeAmountCount(Map<?, ?> params); | 
 |  |  |  | 
 |  |  |     /** | 
 |  |  |      * 统计指定年份各月用水量 | 
 |  |  |      * @param params | 
 |  |  |      * @return | 
 |  |  |      */ | 
 |  |  |     List<VoMonthAmount> getMonthIntakeAmount(Map<?, ?> params); | 
 |  |  | } |