|  |  |  | 
|---|
|  |  |  |  | 
|---|
|  |  |  | import java.util.List; | 
|---|
|  |  |  |  | 
|---|
|  |  |  | import com.ruoyi.alarm.radar.domain.ArdAlarmRadar; | 
|---|
|  |  |  | import com.baomidou.mybatisplus.core.mapper.BaseMapper; | 
|---|
|  |  |  | import com.ruoyi.alarm.radar.domain.ArdAlarmRadarFire; | 
|---|
|  |  |  | import com.ruoyi.statistical.param.ESParam; | 
|---|
|  |  |  | import com.ruoyi.statistical.vo.CountVo; | 
|---|
|  |  |  | import org.apache.ibatis.annotations.Param; | 
|---|
|  |  |  |  | 
|---|
|  |  |  | /** | 
|---|
|  |  |  | 
|---|
|  |  |  | * @author ard | 
|---|
|  |  |  | * @date 2023-09-02 | 
|---|
|  |  |  | */ | 
|---|
|  |  |  | public interface ArdAlarmRadarFireMapper | 
|---|
|  |  |  | public interface ArdAlarmRadarFireMapper extends BaseMapper<ArdAlarmRadarFire> | 
|---|
|  |  |  | { | 
|---|
|  |  |  | /** | 
|---|
|  |  |  | * 查询雷达防火报警 | 
|---|
|  |  |  | 
|---|
|  |  |  | List<ArdAlarmRadarFire> selectListAllByCommand(@Param("refreshTime") String refreshTime); | 
|---|
|  |  |  |  | 
|---|
|  |  |  | public int updateViewTimeByCondition(@Param("name")String name,@Param("alarmTime") String alarmTime,@Param("viewTime") String viewTime); | 
|---|
|  |  |  |  | 
|---|
|  |  |  | ArdAlarmRadarFire selectArdAlarmRadarLastData(String name); | 
|---|
|  |  |  |  | 
|---|
|  |  |  | //根据月份统计数量 | 
|---|
|  |  |  | List<CountVo> fileYear(ESParam esParam); | 
|---|
|  |  |  | //根据天统计数量 | 
|---|
|  |  |  | List<CountVo> fileMonth(ESParam esParam); | 
|---|
|  |  |  | } | 
|---|