| | |
| | | */ |
| | | package org.springblade.jfpt.alarm.mapper; |
| | | |
| | | import com.baomidou.mybatisplus.annotation.SqlParser; |
| | | import com.baomidou.mybatisplus.core.mapper.BaseMapper; |
| | | import com.baomidou.mybatisplus.core.metadata.IPage; |
| | | import org.apache.ibatis.annotations.Param; |
| | |
| | | * 查询警情总数 |
| | | * @return |
| | | */ |
| | | Integer selectAlarmCount(); |
| | | Integer selectAlarmCount(@Param("conditionVo") ConditionVo conditionVo); |
| | | |
| | | /** |
| | | * 查询7天内主动报警(紧急求助)每天的数量 |
| | |
| | | List<Map<String, Object>> queryPoliceTime(List policeIdArr); |
| | | |
| | | List<Map<String, Object>> queryBa(); |
| | | |
| | | /** |
| | | * 查询当前时间段一键求助报警总次数 |
| | | * @param conditionVo |
| | | * @return |
| | | */ |
| | | Integer selAlarmTimeCount(@Param("conditionVo") ConditionVo conditionVo); |
| | | |
| | | /** |
| | | * 查询当前时间段内一键求助报警的数据集合 |
| | | * @param conditionVo |
| | | * @return |
| | | */ |
| | | List<Alarm> selectAlarmList(@Param("conditionVo")ConditionVo conditionVo); |
| | | |
| | | /** |
| | | * 统计时间段内一键求助警情数量数据 |
| | | * @param conditionVo |
| | | * @return |
| | | */ |
| | | @SqlParser(filter = true) |
| | | List<Integer> selectAlarmTimeData(@Param("conditionVo")ConditionVo conditionVo); |
| | | |
| | | List<Map<String, Object>> queryYearAlarm(String deviceNumber,List childList); |
| | | |
| | | } |