puzhibing
2023-02-16 504fdd09f7ae6278308156ad416a35fc02ecb8b8
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
package com.supersavedriving.driver.modular.system.service;
 
import com.baomidou.mybatisplus.service.IService;
import com.supersavedriving.driver.modular.system.model.SystemMessage;
import com.supersavedriving.driver.modular.system.warpper.SystemMessageWarpper;
 
import java.util.List;
 
 
/**
* 系统消息
* @author pzb
* @Date 2023/2/10 15:34
*/
public interface ISystemMessageService extends IService<SystemMessage> {
 
 
    /**
     * 获取个人系统消息列表
     * @param uid
     * @param pageNum
     * @param size
     * @return
     * @throws Exception
     */
    List<SystemMessageWarpper> querySystemMessageList(Integer uid, Integer pageNum, Integer size) throws Exception;
 
 
    /**
     * 阅读系统消息
     * @param uid
     * @param ids
     * @throws Exception
     */
    void  readSystems(Integer uid, String ids) throws Exception;
}