MsgAppPushMapper.java 856 B

123456789101112131415161718192021222324252627282930313233343536
  1. package com.ozs.service.mapper;
  2. import com.baomidou.mybatisplus.core.mapper.BaseMapper;
  3. import com.ozs.service.entity.MsgAppPush;
  4. import com.ozs.service.entity.vo.MsgAppPushVo;
  5. import org.apache.ibatis.annotations.Mapper;
  6. import org.apache.ibatis.annotations.Param;
  7. import java.util.List;
  8. /**
  9. * @author wyy
  10. * @subject
  11. * @creat 2023/3/6
  12. */
  13. @Mapper
  14. public interface MsgAppPushMapper extends BaseMapper<MsgAppPush> {
  15. /**
  16. * app推送报警信息记录
  17. *
  18. * @param status
  19. * @param
  20. * @return
  21. */
  22. List<MsgAppPushVo> alarmPushMsg(MsgAppPushVo msgAppPushVo);
  23. /**
  24. * app推送报警信息记录修改状态
  25. *
  26. * @param status
  27. * @param id
  28. * @param updateBy
  29. * @return
  30. */
  31. public int update(@Param("id") Long id, @Param("status") Integer status, @Param("updateBy") String updateBy);
  32. }