package com.dy.pipIrrGlobal.daoAllRound; import com.baomidou.mybatisplus.core.mapper.BaseMapper; import com.dy.pipIrrGlobal.voAllRound.*; import org.apache.ibatis.annotations.Mapper; import org.apache.ibatis.annotations.Param; import java.util.List; /** * @Author: liurunyu * @Date: 2025/1/22 14:45 * @Description */ @Mapper public interface Ar4StatisticsMapper extends BaseMapper { /** * 开关阀记录 * @param intakeId * @return */ List openCloseRecords(@Param("intakeId") Long intakeId, @Param("start") Integer start, @Param("count") Integer count) ; /** * 日漏损记录 * @param intakeId * @return */ List lossDayRecords(@Param("intakeId") Long intakeId, @Param("start") Integer start, @Param("count") Integer count) ; /** * 月漏损记录 * @param intakeId * @return */ List lossMonthRecords(@Param("intakeId") Long intakeId, @Param("start") Integer start, @Param("count") Integer count) ; /** * 日用水统计记录 * @param intakeId * @return */ List amountDayRecords(@Param("intakeId") Long intakeId, @Param("start") Integer start, @Param("count") Integer count) ; /** * 月用水统计记录 * @param intakeId * @return */ List amountMonthRecords(@Param("intakeId") Long intakeId, @Param("start") Integer start, @Param("count") Integer count) ; }