New file |
| | |
| | | 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<Object> { |
| | | |
| | | /** |
| | | * 开关阀记录 |
| | | * @param intakeId |
| | | * @return |
| | | */ |
| | | List<VoArIntakeOpenCloseValve> openCloseRecords(@Param("intakeId") Long intakeId, @Param("start") Integer start, @Param("count") Integer count) ; |
| | | |
| | | /** |
| | | * 日漏损记录 |
| | | * @param intakeId |
| | | * @return |
| | | */ |
| | | List<VoArIntakeLossDay> lossDayRecords(@Param("intakeId") Long intakeId, @Param("start") Integer start, @Param("count") Integer count) ; |
| | | |
| | | /** |
| | | * 月漏损记录 |
| | | * @param intakeId |
| | | * @return |
| | | */ |
| | | List<VoArIntakeLossMonth> lossMonthRecords(@Param("intakeId") Long intakeId, @Param("start") Integer start, @Param("count") Integer count) ; |
| | | |
| | | /** |
| | | * 日用水统计记录 |
| | | * @param intakeId |
| | | * @return |
| | | */ |
| | | List<VoArIntakeAmountDay> amountDayRecords(@Param("intakeId") Long intakeId, @Param("start") Integer start, @Param("count") Integer count) ; |
| | | |
| | | /** |
| | | * 月用水统计记录 |
| | | * @param intakeId |
| | | * @return |
| | | */ |
| | | List<VoArIntakeAmountMonth> amountMonthRecords(@Param("intakeId") Long intakeId, @Param("start") Integer start, @Param("count") Integer count) ; |
| | | |
| | | |
| | | } |