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
| package com.yeshi.fanli.service.inter.user.invite;
|
| import com.yeshi.fanli.dto.msg.MsgInviteContentDTO;
| import com.yeshi.fanli.entity.bus.user.ThreeSale;
|
| /**
| * 用户邀请消息通知
| *
| * @author Administrator
| *
| */
| public interface UserInviteMsgNotificationService {
|
| /**
| * 二维码扫描
| *
| * @param uid
| * @param sale
| */
| public void inviteScan(Long uid, ThreeSale sale);
|
| /**
| * 邀请成功
| *
| * @param uid
| * @param sale
| */
| public void inviteSuccess(Long uid, ThreeSale sale);
|
| /**
| * 邀请失败
| *
| * @param uid
| * @param sale
| */
| public void inviteFail(Long uid, ThreeSale sale);
|
| /**
| * 领取券、红包激活邀请
| * @param uid
| * @param beizu
| * @param content
| */
| public void receiveGift(Long uid, String beizu, MsgInviteContentDTO content);
|
| /**
| * 2.0.2 版本新邀请消息
| * @param uid
| * @param sale
| */
| public void inviteSuccess2_1(Long uid, ThreeSale sale);
| }
|
|