package com.dy.pipIrrGlobal.daoLargeScreen; import com.baomidou.mybatisplus.core.mapper.BaseMapper; import org.apache.ibatis.annotations.Mapper; import org.apache.ibatis.annotations.Param; import java.util.Date; /** * @Author: liurunyu * @Date: 2025/2/6 10:46 * @Description */ @Mapper public interface Ls4StatisticsMapper extends BaseMapper { /** * 涉及行政区划总数 * @return */ Integer totalCountOfDistrict(@Param("level")Integer level) ; /** * 片区总数 * @return */ Integer totalCountOfBlock() ; /** * 分水房总数 * @return */ Integer totalCountOfDivide() ; /** * 取水口总数 * @return */ Integer totalCountOfIntake() ; /** * 已绑定控制器的取水口总数 * @return */ Integer totalCountOfIntakeWithController() ; /** * 未绑定控制器的取水口总数 * @return */ Integer totalCountOfIntakeWithoutController() ; /** * 阀控器总数 * @return */ Integer totalCountOfController() ; /** * 流浪阀控器总数 * @return */ Integer totalCountOfControllerTramp() ; /** * 开阀总数 */ Integer totalCountOfOpenValve(@Param("dt") Date dt) ; /** * 关阀总数 */ Integer totalCountOfCloseValve(@Param("dt") Date dt) ; /** * 报警总数 */ Integer totalCountOfAlarm(@Param("dt") Date dt) ; /** * 无报警总数 */ Integer totalCountOfNoAlarm(@Param("dt") Date dt) ; }