| package com.mzl.flower.service.coupon; | 
|   | 
| import com.mzl.flower.entity.coupon.CouponTemplateCustomerDO; | 
| import com.baomidou.mybatisplus.extension.service.IService; | 
| import com.mzl.flower.entity.customer.Customer; | 
|   | 
| import java.util.List; | 
|   | 
| /** | 
|  * <p> | 
|  *  服务类 | 
|  * </p> | 
|  * | 
|  * @author @TaoJie | 
|  * @since 2024-08-24 | 
|  */ | 
| public interface CouponTemplateCustomerService extends IService<CouponTemplateCustomerDO> { | 
|   | 
|     /** | 
|      * 根据优惠券的id查找关联关系 | 
|      * @param couponTemplateId | 
|      * @return | 
|      */ | 
|     List<CouponTemplateCustomerDO> getPointCustomReList(String couponTemplateId); | 
|   | 
|     /** | 
|      * 根据优惠券的模版id删除关联关系 | 
|      * @param couponTemplateId | 
|      * @return | 
|      */ | 
|     boolean deleteByCouponTemplateId(String couponTemplateId); | 
|   | 
|     /** | 
|      * 根据优惠券的模版ID查找用户列表 | 
|      * @param id | 
|      * @return | 
|      */ | 
|     List<Customer> getPointCustomerList(String id); | 
|   | 
| } |