1
2
3
4
5
6
7
8
9
10
11
12
13
14
| package com.yeshi.fanli.service.inter.redpack;
|
| public interface RedPackWinInviteService {
|
| /**
| * 订单到账-相关奖励
| * @param uid
| * @param inviteeUid
| * @param source
| * @param orderNo
| */
| public void orderArriveReward(Long uid, Integer source, String orderNo) throws Exception;
|
| }
|
|