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