|  |  |  | 
|---|
|  |  |  | import com.baomidou.mybatisplus.extension.plugins.pagination.Page; | 
|---|
|  |  |  | import com.mzl.flower.dto.request.coupon.BatchCouponTemplateDTO; | 
|---|
|  |  |  | import com.mzl.flower.dto.request.coupon.QueryActivePointCouponDTO; | 
|---|
|  |  |  | import com.mzl.flower.dto.request.coupon.QueryActivityEffectCouponDTO; | 
|---|
|  |  |  | import com.mzl.flower.dto.request.coupon.QueryCouponDTO; | 
|---|
|  |  |  | import com.mzl.flower.dto.response.coupon.CouponTemplateCustomerVO; | 
|---|
|  |  |  | import com.mzl.flower.dto.response.coupon.CouponTemplateVO; | 
|---|
|  |  |  | import com.mzl.flower.entity.coupon.CouponTemplateDO; | 
|---|
|  |  |  | import org.apache.ibatis.annotations.Param; | 
|---|
|  |  |  | 
|---|
|  |  |  | List<CouponTemplateVO> getCouponPointList(@Param("param") QueryActivePointCouponDTO dto); | 
|---|
|  |  |  |  | 
|---|
|  |  |  | Page<CouponTemplateVO> getPointPage(Page page,@Param("param") QueryActivePointCouponDTO dto); | 
|---|
|  |  |  |  | 
|---|
|  |  |  | List<CouponTemplateVO> getActivityEffectList(@Param("param") QueryActivityEffectCouponDTO dto); | 
|---|
|  |  |  |  | 
|---|
|  |  |  | /** | 
|---|
|  |  |  | * 获取关联的用户信息 | 
|---|
|  |  |  | * @param id | 
|---|
|  |  |  | * @return | 
|---|
|  |  |  | */ | 
|---|
|  |  |  | List<CouponTemplateCustomerVO> getCouponCustomerList(@Param("id") String id); | 
|---|
|  |  |  |  | 
|---|
|  |  |  | List<CouponTemplateVO> getVipList(@Param("param") QueryCouponDTO dto); | 
|---|
|  |  |  |  | 
|---|
|  |  |  | List<CouponTemplateVO> getCouponTemplateVipPage(Page page, @Param("param") QueryCouponDTO dto); | 
|---|
|  |  |  |  | 
|---|
|  |  |  | CouponTemplateVO getHomeActivityEffectAlert(@Param("param") QueryActivityEffectCouponDTO dto); | 
|---|
|  |  |  |  | 
|---|
|  |  |  | void expireHomeActivityCouponTemplate(); | 
|---|
|  |  |  |  | 
|---|
|  |  |  | int expireActivityCouponTemplateAll(); | 
|---|
|  |  |  | } | 
|---|