| | |
| | | import com.baomidou.mybatisplus.extension.plugins.pagination.Page; |
| | | import com.ruoyi.common.core.domain.entity.InformationNotification; |
| | | import com.ruoyi.common.core.domain.entity.InformationNotificationDto; |
| | | import org.apache.ibatis.annotations.Param; |
| | | |
| | | import java.util.List; |
| | | |
| | | /** |
| | | * <p> |
| | |
| | | public interface InformationNotificationMapper extends BaseMapper<InformationNotification> { |
| | | |
| | | IPage<InformationNotificationDto> getPage(Page page, String messageType, Integer userId); |
| | | |
| | | /** |
| | | * 消息通知-滚动查询 |
| | | * |
| | | * @param userId |
| | | * @return |
| | | */ |
| | | IPage<InformationNotificationDto> msgRoll(Page page,@Param("userId") Integer userId); |
| | | } |