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
| package com.yeshi.fanli.service.inter.redpack;
|
| import java.util.List;
|
| import com.yeshi.fanli.entity.redpack.RedPackWinInvite;
|
| public interface RedPackWinInviteService {
|
| /**
| * 订单到账-相关奖励
| * @param uid
| * @param inviteeUid
| * @param source
| * @param orderNo
| */
| public void orderArriveReward(Long uid, Integer source, String orderNo) throws Exception;
|
| /**
| * 查询获得记录
| * @param start
| * @param count
| * @param uid
| * @return
| */
| public List<RedPackWinInvite> getRewardList(int start, int count, Long uid);
|
| /**
| * 统计条数
| * @param uid
| * @return
| */
| public Long countRewardRecord(Long uid);
|
| /**
| * 邀请成功奖励
| * @param uid
| * @throws Exception
| */
| public void inviteSucceedReward(Long uid) throws Exception;
|
| }
|
|