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
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
| package com.stylefeng.guns.modular.system.service;
|
| import com.baomidou.mybatisplus.service.IService;
| import com.stylefeng.guns.modular.system.model.UserCouponRecord;
| import com.stylefeng.guns.modular.system.util.ResultUtil;
|
| import java.util.List;
| import java.util.Map;
|
| public interface IUserCouponRecordService extends IService<UserCouponRecord> {
|
|
| /**
| * 获取可用优惠券数量
| * @param uid
| * @param companyId
| * @param state
| * @param couponUseType
| * @return
| * @throws Exception
| */
| int queryAvailable(Integer uid, Integer companyId, Integer state, Integer couponUseType, Double money) throws Exception;
|
|
| /**
| * 获取优惠券列表
| * @return
| * @throws Exception
| */
| List<Map<String, Object>> queryCoupon(Integer language, Integer uid, Integer companyId, Integer state, Integer couponUseType, Double money, Integer pageNum, Integer size) throws Exception;
|
|
| /**
| * 获取优惠券列表
| * @param pageNum
| * @param size
| * @param uid
| * @return
| * @throws Exception
| */
| List<Map<String, Object>> queryMyCoupons(Integer language, Integer state, Integer pageNum, Integer size, Integer uid) throws Exception;
|
|
| /**
| * 删除优惠券
| * @param id
| * @param uid
| * @throws Exception
| */
| ResultUtil delMyCoupon(Integer id, Integer uid, Integer language) throws Exception;
|
|
| /**
| * 赠送优惠券
| * @param id
| * @param uid
| * @param userId
| * @return
| * @throws Exception
| */
| ResultUtil handselCoupon(Integer id, Integer uid, Integer userId, Integer language) throws Exception;
|
|
| /**
| * 修改过期的优惠券状态
| * @throws Exception
| */
| void updateTimeOut() throws Exception;
| }
|
|