1234567891011121314151617181920212223242526272829303132333435363738 |
- package com.ozs.service.mapper;
- import com.baomidou.mybatisplus.core.mapper.BaseMapper;
- import com.ozs.service.entity.MsgAppPush;
- import com.ozs.service.entity.vo.MsgAppPushVo;
- import org.apache.ibatis.annotations.Mapper;
- import org.apache.ibatis.annotations.Param;
- import java.util.List;
- /**
- * @author wyy
- * @subject
- * @creat 2023/3/6
- */
- @Mapper
- public interface MsgAppPushMapper extends BaseMapper<MsgAppPush> {
- /**
- * app推送报警信息记录
- *
- * @param status
- * @param
- * @return
- */
- List<MsgAppPushVo> alarmPushMsg(Integer status);
- /**
- * app推送报警信息记录修改状态
- *
- * @param status
- * @param id
- * @param updateBy
- * @return
- */
- public int update(@Param("id") Long id, @Param("status") Integer status, @Param("updateBy") String updateBy);
- Integer appAlarmNum(@Param("userId") String userId);
- }
|