| | |
| | | package com.panzhihua.sangeshenbian.service.impl; |
| | | |
| | | import cn.hutool.core.bean.BeanUtil; |
| | | import com.baomidou.mybatisplus.core.metadata.IPage; |
| | | import com.baomidou.mybatisplus.extension.plugins.pagination.Page; |
| | | import com.baomidou.mybatisplus.extension.service.impl.ServiceImpl; |
| | |
| | | @Override |
| | | public Page<MessageNotificationVO> getMessageList(BasePage basePage, Long userId) { |
| | | //TODO 待完善 |
| | | Page<MessageNotificationVO> page = new Page<>(basePage.getPageNum(),basePage.getPageSize()); |
| | | return page; |
| | | Page<MessageNotification> page = lambdaQuery().page(new Page<>(basePage.getPageNum(),basePage.getPageSize())); |
| | | return (Page<MessageNotificationVO>) page.convert(item-> BeanUtil.copyProperties(item, MessageNotificationVO.class)); |
| | | } |
| | | } |