| 1234567891011121314151617181920 |
- package com.cyksj.service.relation;
- import com.cyksj.model.entity.GroupsRelation;
- import com.cyksj.model.views.RenewalView;
- import java.util.List;
- /*
- *项目名: netflix
- *文件名: GroupRelationFrontService
- *创建者: JavaZou
- *创建时间:2022/12/29 15:42
- */
- public interface GroupRelationFrontService {
- List<RenewalView> getMyTicket(long userId, Boolean isLoginPopularize);
- Boolean isJoinCorpWx(Long userId, Boolean isJoin, Boolean noCoupon);
- GroupsRelation getSimilarExpiredGroupRelation(Long skuId, Integer months);
- }
|