| | |
| | | |
| | | import java.util.List; |
| | | |
| | | import com.baomidou.mybatisplus.core.mapper.BaseMapper; |
| | | import com.ruoyi.alarm.access.domain.ArdAlarmAccess; |
| | | import com.ruoyi.alarm.apponekey.domain.ArdAlarmApponekey; |
| | | import com.ruoyi.statistical.param.ESParam; |
| | | import com.ruoyi.statistical.vo.CountVo; |
| | | import org.apache.ibatis.annotations.Param; |
| | | |
| | | /** |
| | |
| | | * @author ard |
| | | * @date 2023-07-21 |
| | | */ |
| | | public interface ArdAlarmApponekeyMapper |
| | | public interface ArdAlarmApponekeyMapper extends BaseMapper<ArdAlarmApponekey> |
| | | { |
| | | /** |
| | | * 查询app一键报警 |
| | |
| | | public List<ArdAlarmApponekey> selectListAllByCommand(@Param("refreshTime") String refreshTime); |
| | | |
| | | public int updateViewTimeByUserId(@Param("userId")String userId,@Param("createTime") String createTime,@Param("viewTime") String viewTime); |
| | | |
| | | //根据月份统计数量 |
| | | List<CountVo> apponekeyYear(ESParam esParam); |
| | | //根据天统计数量 |
| | | List<CountVo> apponekeyMonth(ESParam esParam); |
| | | } |