|  |  |  | 
|---|
|  |  |  | import com.baomidou.mybatisplus.core.mapper.BaseMapper; | 
|---|
|  |  |  | import com.dy.pipIrrGlobal.voTmp.*; | 
|---|
|  |  |  | import org.apache.ibatis.annotations.Mapper; | 
|---|
|  |  |  | import org.apache.ibatis.annotations.Param; | 
|---|
|  |  |  |  | 
|---|
|  |  |  | import java.util.List; | 
|---|
|  |  |  |  | 
|---|
|  |  |  | 
|---|
|  |  |  | */ | 
|---|
|  |  |  | @Mapper | 
|---|
|  |  |  | public interface DeleteMapper extends BaseMapper<Object> { | 
|---|
|  |  |  |  | 
|---|
|  |  |  | /** | 
|---|
|  |  |  | * 查询全部漏损日统计 | 
|---|
|  |  |  | * | 
|---|
|  |  |  | * @return 实体集合 | 
|---|
|  |  |  | */ | 
|---|
|  |  |  | List<VoStLossAmountDay> selectAllStLossDay(); | 
|---|
|  |  |  |  | 
|---|
|  |  |  | int deleteStLossDayById(Long id); | 
|---|
|  |  |  |  | 
|---|
|  |  |  | /** | 
|---|
|  |  |  | * 查询全部漏损月统计 | 
|---|
|  |  |  | 
|---|
|  |  |  | List<VoStLossAmountYear> selectAllStLossYear(); | 
|---|
|  |  |  |  | 
|---|
|  |  |  | int deleteStLossYearById(Long id); | 
|---|
|  |  |  |  | 
|---|
|  |  |  |  | 
|---|
|  |  |  | /** | 
|---|
|  |  |  | * 查询全部取水口日统计 | 
|---|
|  |  |  | * | 
|---|
|  |  |  | * @return 实体集合 | 
|---|
|  |  |  | */ | 
|---|
|  |  |  | List<VoStIntakeAmountDay> selectAllStIntakeDay(); | 
|---|
|  |  |  |  | 
|---|
|  |  |  | int deleteStIntakeDayById(Long id); | 
|---|
|  |  |  |  | 
|---|
|  |  |  |  | 
|---|
|  |  |  | /** | 
|---|
|  |  |  | 
|---|
|  |  |  | * | 
|---|
|  |  |  | * @return 实体集合 | 
|---|
|  |  |  | */ | 
|---|
|  |  |  | List<VoStClientAmountDay> selectAllStClientDay(); | 
|---|
|  |  |  |  | 
|---|
|  |  |  | int deleteRmClientDayById(Long id); | 
|---|
|  |  |  |  | 
|---|
|  |  |  |  | 
|---|
|  |  |  | /** | 
|---|
|  |  |  | * 查询全部农户月统计 | 
|---|
|  |  |  | * | 
|---|
|  |  |  | * @return 实体集合 | 
|---|
|  |  |  | */ | 
|---|
|  |  |  | List<VoStClientAmountMonth> selectAllStClientMonth(); | 
|---|
|  |  |  |  | 
|---|
|  |  |  | int deleteStClientMonthById(Long id); | 
|---|
|  |  |  | 
|---|
|  |  |  |  | 
|---|
|  |  |  | int deleteStClientYearById(Long id); | 
|---|
|  |  |  |  | 
|---|
|  |  |  |  | 
|---|
|  |  |  | /** | 
|---|
|  |  |  | * 查询全部农户年统计 | 
|---|
|  |  |  | * | 
|---|
|  |  |  | * @return 实体集合 | 
|---|
|  |  |  | */ | 
|---|
|  |  |  | List<VoStClientAmountDay> selectStClientAmountDayByYearMonth(@Param("year") int year, @Param("month")int month); | 
|---|
|  |  |  |  | 
|---|
|  |  |  |  | 
|---|
|  |  |  | int deleteStClientDayById(Long id); | 
|---|
|  |  |  |  | 
|---|
|  |  |  | } | 
|---|