12345678910111213141516171819 |
- package com.ozs.service.mapper;
- import com.baomidou.mybatisplus.core.mapper.BaseMapper;
- import com.ozs.service.entity.MsgWebPush;
- import org.apache.ibatis.annotations.Mapper;
- import org.apache.ibatis.annotations.Param;
- import java.util.List;
- /**
- * @Author : sunhh
- * @create 2023/3/15 14:35
- */
- @Mapper
- public interface MsgWebPushMapper extends BaseMapper<MsgWebPush> {
- Integer webAlarmNum(@Param("userId") String userId);
- List<MsgWebPush> webAlarm(@Param("userId") String userId);
- }
|