沙钢智慧能源系统后端代码
dongyukun
5 天以前 9fd41a27093dcbf70c2a99adaf06bd15cddf6184
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
package com.iailab.module.shasteel.job.service;
 
import com.baomidou.mybatisplus.extension.plugins.pagination.Page;
import com.iailab.framework.common.pojo.PageResult;
import com.iailab.framework.common.service.BaseService;
import com.iailab.module.shasteel.job.entity.MessageInfoEntity;
import org.springframework.stereotype.Service;
 
import java.util.List;
 
public interface MessageInfoService extends BaseService<MessageInfoEntity> {
 
    List<MessageInfoEntity> getMessageList();
 
    long getUnreadMessageCount();
 
    void create(MessageInfoEntity messageInfoEntity);
 
    PageResult<MessageInfoEntity> getMessagePage(Integer pageNo, Integer pageSize);
 
    void readMessage(List<String> ids);
 
    boolean getIsSuggestKeep(String title);
}