1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
| package com.yeshi.fanli.service.inter.redpack;
|
| import com.yeshi.fanli.vo.redpack.RedPackWinDetailVO;
|
| public interface RedPackWinNewUserService {
|
| /**
| * 领取红包
| * @param uid
| * @return
| * @throws Exception
| */
| public RedPackWinDetailVO receiveReward(Long uid) throws Exception;
|
|
|
| }
|
|