44323
2024-04-23 16b704d18a875d1fb63827aaa507790ba2bef5be
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.stylefeng.guns.modular.system.service;
 
import com.baomidou.mybatisplus.service.IService;
import com.stylefeng.guns.modular.system.model.Coupon;
import com.stylefeng.guns.modular.system.vo.CouPonQuery;
import com.stylefeng.guns.modular.system.vo.CouponListVO;
import com.stylefeng.guns.modular.system.vo.CouponReceiveVO;
 
import java.util.List;
 
/**
 * <p>
 * 优惠券管理 服务类
 * </p>
 *
 * @author 无关风月
 * @since 2024-02-06
 */
public interface ICouponService extends IService<Coupon> {
 
    List<Coupon> couponList(String couponName, Integer timeType, Integer grantType);
 
    List<CouponReceiveVO> couponReceive(CouPonQuery couPonQuery);
 
 
}