GroupRelationFrontService.java 2.0 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162
  1. package com.cyksj.service.relation;
  2. import com.baomidou.mybatisplus.extension.plugins.pagination.Page;
  3. import com.cyksj.model.entity.GoodsDonSku;
  4. import com.cyksj.model.entity.GroupsRelation;
  5. import com.cyksj.model.request.SpecialGoodsTicketReq;
  6. import com.cyksj.model.views.RenewalView;
  7. import com.cyksj.model.views.UserRecommendGoodsFrontView;
  8. import com.ejlchina.searcher.SearchResult;
  9. import java.util.List;
  10. /*
  11. *项目名: netflix
  12. *文件名: GroupRelationFrontService
  13. *创建者: JavaZou
  14. *创建时间:2022/12/29 15:42
  15. */
  16. public interface GroupRelationFrontService {
  17. SearchResult<RenewalView> getMyTicket(long userId, Boolean isLoginPopularize, String customId, String account);
  18. Boolean isJoinCorpWx(Long userId, Boolean isJoin, Boolean noCoupon);
  19. GroupsRelation getSimilarExpiredGroupRelation(GoodsDonSku sku, List<Long> errorsRelationIds, String ip);
  20. Page<UserRecommendGoodsFrontView> getRecommendGoodsViews(Boolean isPayNf, List<Long> filter_goods_id, Integer start, Integer limit);
  21. /**
  22. * 通过邮件发送课程
  23. */
  24. void sendCourseWare(SpecialGoodsTicketReq request) throws Exception;
  25. /**
  26. * 获取车票座位
  27. */
  28. GroupsRelation getRelation(Long payRelationId, Long userId, GoodsDonSku sku, String ip);
  29. /**
  30. * 获取车票账号登录 验证码
  31. */
  32. String getAiVerifyCode(Long userId, Long relationId, Integer type) throws Exception;
  33. void checkGroupsAvailParkingNum(Long skuId, Long groupsId, Integer availableParkingNum, Integer maxNum);
  34. /**
  35. * 调整指定规格车队下次可 停用车位数的时间
  36. */
  37. void adjustGroupsParkingTime(Long relationId, GoodsDonSku sku);
  38. void setGroupsTripsParkingTimeEmpty(GoodsDonSku sku, Long relationId);
  39. Integer getUserCodeNumBySkuId(Long userId, Long skuId, Boolean isHasVerifyCode);
  40. List<RenewalView> getHasPayGoods(long userId);
  41. List<RenewalView> getExpiryRenewalNotify(Long userId);
  42. void getCollegeStudentUserGptTicket(Long userId);
  43. RenewalView getTicketDetail(long userId, Long relationId);
  44. }