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
51
52
53
54
55
56
57
58
59
60
61
62
63
| package com.yeshi.fanli.service.inter.msg;
|
| /**
| * 用户账户消息通知
| *
| * @author Administrator
| *
| */
| public interface UserAccountMsgNotificationService {
|
| /**
| * 绑定成功
| *
| * @param uid
| * @param type
| */
| public void bindingSuccess(Long uid, int type);
|
| /**
| * 解绑成功
| *
| * @param uid
| * @param type
| */
| public void unBindingSuccess(Long uid, int type);
|
| /**
| * 取消绑定成功
| *
| * @param uid
| * @param type
| */
| public void changeBindingSuccess(Long uid, int type);
|
| /**
| * 账号合并成功
| *
| * @param uid
| * @param lessUid
| */
| public void connectSuccess(Long uid, Long lessUid);
|
| /**
| * 用户等级变化
| *
| * @param uid
| * @param orderType
| * -订单类型(邀请订单/返利订单/分享订单)
| * @param orderCount
| * @param rankName
| */
| public void userRank(Long uid, String orderType, int orderCount, String rankName);
|
| /**
| * 淘宝授权失败
| *
| * @param uid
| * @param taoBaoNickName
| * @param reason
| */
| public void taoBaoAuthFail(Long uid, String taoBaoNickName, String reason);
|
| }
|
|