MessageService.java
535 字节
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
37
38
package com.example.client.service;
import cn.bronet.admin.common.core.domain.AjaxResult;
import lombok.extern.slf4j.Slf4j;
/**
* Created with IDEA
* author: MaDongXu
* Date:2021/9/14
* Time:20:45
* */
public interface MessageService {
/**
* 谁@了我
* @return
*/
AjaxResult atMe();
/**
* 谁赞了我
* @return
*/
AjaxResult likeMe();
/**
* 谁评论了我
* @return
*/
AjaxResult commentMe();
/**
* 查看消息
* @param messageId
* @return
*/
AjaxResult openMessage(Long messageId);
}