value
2024-05-27 cdefd6a50721e2c4ba6df850e1405419f9df3c31
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
package com.yuanchu.mom.service;
 
import com.baomidou.mybatisplus.core.metadata.IPage;
import com.baomidou.mybatisplus.extension.plugins.pagination.Page;
import com.baomidou.mybatisplus.extension.service.IService;
import com.yuanchu.mom.pojo.InformationNotification;
import com.yuanchu.mom.pojo.InformationNotificationDto;
 
import java.util.Map;
 
/**
 * <p>
 * 消息通知 服务类
 * </p>
 *
 * @author 江苏鵷雏网络科技有限公司
 * @since 2024-04-23 02:14:30
 */
public interface InformationNotificationService extends IService<InformationNotification> {
 
    IPage<InformationNotificationDto> getPage(Page page, String messageType);
 
    void markAllInformationReadOrDeleteAllReadMessages(Boolean isMarkAllInformationRead);
 
    Boolean checkForUnreadData();
 
    void triggerModificationStatusToRead(Integer id);
 
    int addInformationNotification(InformationNotification informationNotification);
 
    Map<String, Object> getNumberFourTypesMessagesHomePage();
}