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
39
40
41
42
43
44
45
46
47
48
49
50
| package com.yeshi.fanli.service.inter.push;
|
| import com.yeshi.fanli.entity.bus.user.AccountMessage;
| import com.yeshi.fanli.entity.system.SystemZnx;
| import com.yeshi.fanli.exception.PushException;
|
| public interface BasePushService {
| /**
| * 推送商品
| *
| * @param uid
| * @param url
| * @param title
| * @param content
| * @throws PushException
| */
| void pushGoods(Long uid, Long auctionId, String title, String content) throws PushException;
|
| /**
| * 推送链接
| *
| * @param uid
| * @param url
| * @param title
| * @param content
| * @throws PushException
| */
| void pushUrl(Long uid, String url, String title, String content) throws PushException;
|
| /**
| * 推送WEEX的页面(暂时不做)
| *
| * @param uid
| * @param weexUrl
| * @param title
| * @param content
| * @throws PushException
| */
| void pushWEEXUrl(Long uid, String weexUrl, String title, String content) throws PushException;
|
| /**
| * 推送站内信
| *
| * @param uId
| * @param title
| * @param content
| * @throws PushException
| */
| void pushZNX(Long uId, AccountMessage msg,SystemZnx systemZNX) throws PushException;
| }
|
|