yujian
2019-11-13 a2ae9b3d890bc7fcaa34ab65e5cdaf8ccfa07c2b
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
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;
 
    /**
     * 验证是否可领取红包
     * @param uid
     * @return
     */
    public boolean verifyHasReward(Long uid, String device);
 
    
    
}