修改pc已读消息列表

This commit is contained in:
sh
2025-11-06 12:33:54 +08:00
parent e5ba8fe0e7
commit e270fcc531
3 changed files with 34 additions and 0 deletions

View File

@@ -82,4 +82,11 @@ public interface IAppNoticeService
void readSysNotices(String ids,Long userId);
List<Notice> selectListAppNotics(Notice notice);
/**
* 获取消息列表
* @param notice
* @return
*/
List<Notice> selectListAppNotices(Notice notice);
}

View File

@@ -229,5 +229,9 @@ public class AppNoticeServiceImpl implements IAppNoticeService
notice.setRemark(StringUtil.NOTICE_TYPE);
return noticeInfoMapper.getNoticlist(notice);
}
public List<Notice> selectListAppNotices(Notice notice){
return noticeInfoMapper.getNoticlist(notice);
}
}