1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
| package com.yeshi.fanli.service.inter.user;
|
| import java.util.Map;
|
| import com.yeshi.fanli.exception.user.UserLotteryRecordException;
|
| public interface UserLotteryRecordService {
|
| /**
| * 根据uid以及抽奖类型 获取抽奖次数
| * @param uid
| * @param type
| * @return
| */
| public Map<String, Object> getLotteryCountDaily(Long uid) throws UserLotteryRecordException, Exception;
|
|
| /**
| * 抽奖-天天抽奖励券
| * @param uid
| * @return
| * @throws UserLotteryRecordException
| * @throws Exception
| */
| public Map<String, Object> executeLotteryDaily(Long uid) throws UserLotteryRecordException, Exception;
|
|
|
| }
|
|