|  |  |  | 
|---|
|  |  |  | package com.ruoyi.alarm.camera.mapper; | 
|---|
|  |  |  |  | 
|---|
|  |  |  | import java.util.List; | 
|---|
|  |  |  |  | 
|---|
|  |  |  | import com.baomidou.mybatisplus.core.mapper.BaseMapper; | 
|---|
|  |  |  | import com.ruoyi.alarm.camera.domain.ArdAlarmCamera; | 
|---|
|  |  |  | import com.ruoyi.statistical.param.ESParam; | 
|---|
|  |  |  | import com.ruoyi.statistical.vo.CountVo; | 
|---|
|  |  |  | 
|---|
|  |  |  | * @author ard | 
|---|
|  |  |  | * @date 2023-06-21 | 
|---|
|  |  |  | */ | 
|---|
|  |  |  | public interface ArdAlarmCameraMapper | 
|---|
|  |  |  | public interface ArdAlarmCameraMapper extends BaseMapper<ArdAlarmCamera> | 
|---|
|  |  |  | { | 
|---|
|  |  |  | /** | 
|---|
|  |  |  | * 查询通用光电报警 | 
|---|
|  |  |  | 
|---|
|  |  |  |  | 
|---|
|  |  |  | //根据月份统计数量 | 
|---|
|  |  |  | List<CountVo> cameraYear(ESParam esParam); | 
|---|
|  |  |  | //根据天统计数量 | 
|---|
|  |  |  | List<CountVo> cameraMonth(ESParam esParam); | 
|---|
|  |  |  | } | 
|---|