| 123456789101112131415161718192021222324252627282930 |
- package com.cyksj.service.relation;
- import com.baomidou.mybatisplus.extension.plugins.pagination.Page;
- import com.cyksj.model.entity.GroupsRelation;
- import com.cyksj.model.request.SpecialGoodsTicketReq;
- import com.cyksj.model.views.RenewalView;
- import com.cyksj.model.views.UserRecommendGoodsFrontView;
- import java.util.List;
- /*
- *项目名: netflix
- *文件名: GroupRelationFrontService
- *创建者: JavaZou
- *创建时间:2022/12/29 15:42
- */
- public interface GroupRelationFrontService {
- List<RenewalView> getMyTicket(long userId, Boolean isLoginPopularize, String customId);
- Boolean isJoinCorpWx(Long userId, Boolean isJoin, Boolean noCoupon);
- GroupsRelation getSimilarExpiredGroupRelation(Long skuId, Integer days, Integer months, List<Long> errorsRelationIds);
- Page<UserRecommendGoodsFrontView> getRecommendGoodsViews(Boolean isPayNf, List<Long> filter_goods_id, Integer start, Integer limit);
- /**
- * 通过邮件发送课程
- */
- void sendCourseWare(SpecialGoodsTicketReq request) throws Exception;
- }
|