办学质量监测教学评价系统
ageerle
2025-04-09 3be9005f95ebc14639a7e281703dfa9d9b4a7afc
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.system.domain.SysNoticeState;
import org.ruoyi.system.domain.vo.SysNoticeStateVo;
import org.ruoyi.common.mybatis.core.mapper.BaseMapperPlus;
 
/**
 * 用户阅读状态Mapper接口
 *
 * @author Lion Li
 * @date 2024-05-11
 */
public interface SysNoticeStateMapper extends BaseMapperPlus<SysNoticeState, SysNoticeStateVo> {
 
    /**
     * 阅读所有公告
     */
    void readAllNotice();
}