| | |
| | | package com.panzhihua.service_community.service; |
| | | |
| | | import com.baomidou.mybatisplus.extension.service.IService; |
| | | import com.panzhihua.common.model.dtos.community.microCommercialStreet.PageJoinGameListDTO; |
| | | import com.panzhihua.common.model.vos.R; |
| | | import com.panzhihua.service_community.entity.McsCoupon; |
| | | |
| | | /** |
| | |
| | | */ |
| | | public interface McsCouponService extends IService<McsCoupon> { |
| | | |
| | | /** |
| | | * 我的戳戳卷 |
| | | * @return |
| | | * @param type |
| | | * @param userId |
| | | */ |
| | | R getMyCoupon(Integer type, Long userId); |
| | | |
| | | /** |
| | | * 我的评价-参与游戏列表 |
| | | * @param pageJoinGameListDTO |
| | | * @return |
| | | */ |
| | | R getJoinGameList(PageJoinGameListDTO pageJoinGameListDTO); |
| | | |
| | | /** |
| | | * 戳戳卷核销 |
| | | * @param couponId |
| | | * @return |
| | | */ |
| | | R verifyMcsCoupon(Long couponId); |
| | | |
| | | /** |
| | | * 游戏统计 |
| | | * @param userId |
| | | * @return |
| | | */ |
| | | R getMcsGameStatistics(Long userId); |
| | | } |