yujian
2019-11-06 54e6398cabe1b32b1dbc9857c6a99d8f15b549f7
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;
 
    
    
}