This commit is contained in:
wangliwen 2022-06-22 11:00:02 +08:00
parent 5333b18711
commit 2189f6a3f0
1 changed files with 1 additions and 4 deletions

View File

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