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
| package com.sinata.modular.system.service;
|
| import com.baomidou.mybatisplus.plugins.Page;
| import com.baomidou.mybatisplus.service.IService;
| import com.sinata.modular.system.model.MyCoupon;
|
| import java.util.List;
|
| /**
| * <p>
| * 优惠券 服务类
| * </p>
| *
| * @author fq
| * @since 2023-03-05
| */
| public interface IMyCouponService extends IService<MyCoupon> {
|
| List<MyCoupon> selectMyCouponList(Integer type,String beginTime, String endTime, String name,String couponType, String serverType, Page<MyCoupon> page);
|
| /**
| * 订单使用/退还优惠券
| */
| boolean updateUseCoupon(Integer userId, Integer couponId, Integer isUse);
|
| }
|
|