| | |
| | | |
| | | import java.util.List; |
| | | |
| | | import com.baomidou.mybatisplus.core.mapper.BaseMapper; |
| | | import com.ruoyi.alarm.tube.domain.ArdAlarmTube; |
| | | import com.ruoyi.statistical.param.ESParam; |
| | | import com.ruoyi.statistical.vo.CountVo; |
| | | import org.apache.ibatis.annotations.Param; |
| | | |
| | | |
| | |
| | | * @author 刘苏义 |
| | | * @date 2023-06-06 |
| | | */ |
| | | public interface ArdAlarmTubeMapper |
| | | public interface ArdAlarmTubeMapper extends BaseMapper<ArdAlarmTube> |
| | | { |
| | | /** |
| | | * 查询管线泄露报警 |
| | |
| | | public List<ArdAlarmTube> selectListAllByCommand(@Param("refreshTime")String refreshTime); |
| | | int selectCountByAlarmTime(@Param("refreshTime")String refreshTime); |
| | | public int updateViewTimeByTubeId(@Param("tubeId")String tubeId,@Param("alarmTime") String alarmTime,@Param("viewTime") String viewTime); |
| | | |
| | | //根据月份统计数量 |
| | | List<CountVo> tubeYear(ESParam esParam); |
| | | //根据月份统计数量 |
| | | List<CountVo> tubeMonth(ESParam esParam); |
| | | } |