通知公告新增阅读用户列表

This commit is contained in:
RuoYi
2026-04-14 15:39:49 +08:00
parent ba33fe9e03
commit 0728a04b1b
9 changed files with 200 additions and 5 deletions

View File

@@ -1,6 +1,7 @@
package com.ruoyi.system.service;
import java.util.List;
import java.util.Map;
import com.ruoyi.system.domain.SysNotice;
/**
@@ -43,6 +44,15 @@ public interface ISysNoticeReadService
*/
public void markReadBatch(Long userId, Long[] noticeIds);
/**
* 查询已阅读某公告的用户列表
*
* @param noticeId 公告ID
* @param searchValue 搜索值
* @return 已读用户列表
*/
public List<Map<String, Object>> selectReadUsersByNoticeId(Long noticeId, String searchValue);
/**
* 删除公告时清理对应已读记录
*