package com.dy.pipIrrGlobal.daoTmp; import com.baomidou.mybatisplus.core.mapper.BaseMapper; import com.dy.pipIrrGlobal.voTmp.*; import org.apache.ibatis.annotations.Mapper; import java.util.List; /** * @Author: liurunyu * @Date: 2024/12/11 11:15 * @Description */ @Mapper public interface DeleteMapper extends BaseMapper { /** * 查询全部漏损日统计 * * @return 实体集合 */ List selectAllStLossDay(); int deleteStLossDayById(Long id); /** * 查询全部漏损月统计 * * @return 实体集合 */ List selectAllStLossMonth(); int deleteStLossMonthById(Long id); /** * 查询全部漏损年统计 * * @return 实体集合 */ List selectAllStLossYear(); int deleteStLossYearById(Long id); /** * 查询全部取水口日统计 * * @return 实体集合 */ List selectAllStIntakeDay(); int deleteStIntakeDayById(Long id); /** * 查询全部取水口月统计 * * @return 实体集合 */ List selectAllStIntakeMonth(); int deleteStIntakeMonthById(Long id); /** * 查询全部取水口年统计 * * @return 实体集合 */ List selectAllStIntakeYear(); int deleteStIntakeYearById(Long id); /** * 查询全部农户月统计 * * @return 实体集合 */ List selectAllStClientDay(); int deleteStClientDayById(Long id); /** * 查询全部农户月统计 * * @return 实体集合 */ List selectAllStClientMonth(); int deleteStClientMonthById(Long id); /** * 查询全部农户年统计 * * @return 实体集合 */ List selectAllStClientYear(); int deleteStClientYearById(Long id); }