| | |
| | | package com.yeshi.fanli.service.inter.user.invite;
|
| | |
|
| | | import com.yeshi.fanli.dto.user.UserInviteLevelEnum;
|
| | |
|
| | | public interface UserInviteService {
|
| | | /**
|
| | | * 获取邀请等级
|
| | | * |
| | | * @param uid
|
| | | * @return
|
| | | */
|
| | | public UserInviteLevelEnum getUserInviteLevel(Long uid);
|
| | | }
|
| | | package com.yeshi.fanli.service.inter.user.invite; |
| | | |
| | | import com.yeshi.fanli.dto.user.UserInviteLevelEnum; |
| | | import com.yeshi.fanli.dto.vip.UserVIPLevel; |
| | | |
| | | public interface UserInviteService { |
| | | /** |
| | | * 获取邀请等级 |
| | | * |
| | | * @param uid |
| | | * @return |
| | | */ |
| | | public UserInviteLevelEnum getUserInviteLevel(Long uid); |
| | | |
| | | |
| | | /** |
| | | * 获取邀请等级 2.1 |
| | | * |
| | | * @param uid |
| | | * @return |
| | | */ |
| | | public UserInviteLevelEnum getUserInviteLevelNew(Long uid); |
| | | |
| | | |
| | | /** |
| | | * 判断是会员 |
| | | * @param uid |
| | | * @return |
| | | */ |
| | | public boolean verifyVIP(Long uid); |
| | | |
| | | |
| | | /** |
| | | * 查询会员当前VIP等级 |
| | | * @param uid |
| | | * @return |
| | | */ |
| | | public UserVIPLevel getVIPLevelByUid(Long uid); |
| | | } |