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
| package cn.lihu.jh.module.system.api.notify;
|
| import cn.lihu.jh.module.system.api.notify.dto.NotifySendSingleToUserReqDTO;
|
| import javax.validation.Valid;
|
| /**
| * 站内信发送 API 接口
| *
| * @author xrcoder
| */
| public interface NotifyMessageSendApi {
|
| /**
| * 发送单条站内信给 Admin 用户
| *
| * @param reqDTO 发送请求
| * @return 发送消息 ID
| */
| Long sendSingleMessageToAdmin(@Valid NotifySendSingleToUserReqDTO reqDTO);
|
| /**
| * 发送单条站内信给 Member 用户
| *
| * @param reqDTO 发送请求
| * @return 发送消息 ID
| */
| Long sendSingleMessageToMember(@Valid NotifySendSingleToUserReqDTO reqDTO);
|
| }
|
|