MsgWebPushMapper.java 497 B

12345678910111213141516171819
  1. package com.ozs.service.mapper;
  2. import com.baomidou.mybatisplus.core.mapper.BaseMapper;
  3. import com.ozs.service.entity.MsgWebPush;
  4. import org.apache.ibatis.annotations.Mapper;
  5. import org.apache.ibatis.annotations.Param;
  6. import java.util.List;
  7. /**
  8. * @Author : sunhh
  9. * @create 2023/3/15 14:35
  10. */
  11. @Mapper
  12. public interface MsgWebPushMapper extends BaseMapper<MsgWebPush> {
  13. Integer webAlarmNum(@Param("userId") String userId);
  14. List<MsgWebPush> webAlarm(@Param("userId") String userId);
  15. }