办学质量监测教学评价系统
ageerle
2025-05-26 abcde9e36e8cb6e80bc091532d6e11789b9eb085
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
package org.ruoyi.system.mapper;
 
import org.ruoyi.core.mapper.BaseMapperPlus;
import org.ruoyi.system.domain.SysNoticeState;
import org.ruoyi.system.domain.vo.SysNoticeStateVo;
 
/**
 * 用户阅读状态Mapper接口
 *
 * @author Lion Li
 * @date 2024-05-11
 */
public interface SysNoticeStateMapper extends BaseMapperPlus<SysNoticeState, SysNoticeStateVo> {
 
    /**
     * 阅读所有公告
     */
    void readAllNotice();
}