This commit is contained in:
wangliwen 2022-06-22 10:45:42 +08:00
parent 40817f2ddf
commit aaeda5f9bd
1 changed files with 4 additions and 1 deletions

View File

@ -73,7 +73,10 @@ public class SysNoticeServiceImpl extends CrudServiceImpl<SysNoticeDao, SysNotic
@Override @Override
public PageData<SysNoticeDTO> getMyNoticePage(Map<String, Object> params) { public PageData<SysNoticeDTO> getMyNoticePage(Map<String, Object> params) {
//分页 //分页
IPage<SysNoticeEntity> page = getPage(params, null, false); IPage<SysNoticeEntity> page = baseDao.selectPage(
getPage(params, null, false),
getWrapper(params)
);
//查询 //查询
params.put("receiverId", SecurityUser.getUserId()); params.put("receiverId", SecurityUser.getUserId());