| | |
| | | package com.ruoyi.alarm.external.mapper; |
| | | |
| | | import java.util.List; |
| | | |
| | | import com.baomidou.mybatisplus.core.mapper.BaseMapper; |
| | | import com.ruoyi.alarm.external.domain.ArdAlarmExternal; |
| | | import com.ruoyi.statistical.param.ESParam; |
| | | import com.ruoyi.statistical.vo.CountVo; |
| | |
| | | * @author ard |
| | | * @date 2023-07-07 |
| | | */ |
| | | public interface ArdAlarmExternalMapper |
| | | public interface ArdAlarmExternalMapper extends BaseMapper<ArdAlarmExternal> |
| | | { |
| | | /** |
| | | * 查询外联报警 |
| | |
| | | |
| | | //根据月份统计数量 |
| | | List<CountVo> externalYear(ESParam esParam); |
| | | //根据天统计数量 |
| | | List<CountVo> externalMonth(ESParam esParam); |
| | | |
| | | } |