|  |  |  | 
|---|
|  |  |  |  | 
|---|
|  |  |  | import java.util.List; | 
|---|
|  |  |  |  | 
|---|
|  |  |  | import com.baomidou.mybatisplus.core.mapper.BaseMapper; | 
|---|
|  |  |  | import com.ruoyi.alarm.apponekey.domain.ArdAlarmApponekey; | 
|---|
|  |  |  | import com.ruoyi.alarm.wall.domain.ArdAlarmWall; | 
|---|
|  |  |  | import com.ruoyi.statistical.param.ESParam; | 
|---|
|  |  |  | import com.ruoyi.statistical.vo.CountVo; | 
|---|
|  |  |  | import org.apache.ibatis.annotations.Param; | 
|---|
|  |  |  |  | 
|---|
|  |  |  | /** | 
|---|
|  |  |  | 
|---|
|  |  |  | * @author ard | 
|---|
|  |  |  | * @date 2023-08-31 | 
|---|
|  |  |  | */ | 
|---|
|  |  |  | public interface ArdAlarmWallMapper | 
|---|
|  |  |  | public interface ArdAlarmWallMapper extends BaseMapper<ArdAlarmWall> | 
|---|
|  |  |  | { | 
|---|
|  |  |  | /** | 
|---|
|  |  |  | * 查询电子围栏报警 | 
|---|
|  |  |  | 
|---|
|  |  |  | public List<ArdAlarmWall> selectListAllByCommand(@Param("refreshTime") String refreshTime); | 
|---|
|  |  |  |  | 
|---|
|  |  |  | public int updateViewTimeByUserId(@Param("userId")String userId,@Param("createTime") String createTime,@Param("viewTime") String viewTime); | 
|---|
|  |  |  |  | 
|---|
|  |  |  | //根据月份统计数量 | 
|---|
|  |  |  | List<CountVo> wallYear(ESParam esParam); | 
|---|
|  |  |  | //根据天统计数量 | 
|---|
|  |  |  | List<CountVo> wallMonth(ESParam esParam); | 
|---|
|  |  |  | } | 
|---|