From fd7b8fb7c89832c28a838b0449bbb8a392433ee2 Mon Sep 17 00:00:00 2001
From: Pu Zhibing <393733352@qq.com>
Date: 星期二, 22 四月 2025 14:33:02 +0800
Subject: [PATCH] 将华为云短信替换成阿里云短信
---
ruoyi-service/ruoyi-account/src/main/java/com/ruoyi/account/service/impl/VipCenterServiceImpl.java | 503 ++++++++++++++++++++++++++-----------------------------
1 files changed, 242 insertions(+), 261 deletions(-)
diff --git a/ruoyi-service/ruoyi-account/src/main/java/com/ruoyi/account/service/impl/VipCenterServiceImpl.java b/ruoyi-service/ruoyi-account/src/main/java/com/ruoyi/account/service/impl/VipCenterServiceImpl.java
index a942c97..4d5e0c4 100644
--- a/ruoyi-service/ruoyi-account/src/main/java/com/ruoyi/account/service/impl/VipCenterServiceImpl.java
+++ b/ruoyi-service/ruoyi-account/src/main/java/com/ruoyi/account/service/impl/VipCenterServiceImpl.java
@@ -4,7 +4,11 @@
import com.alibaba.fastjson2.JSON;
import com.alibaba.fastjson2.JSONObject;
import com.baomidou.mybatisplus.core.conditions.query.LambdaQueryWrapper;
+import com.baomidou.mybatisplus.core.conditions.query.QueryWrapper;
+import com.ruoyi.account.api.model.AgentApplication;
import com.ruoyi.account.api.model.AppUser;
+import com.ruoyi.account.mapper.AgentApplicationMapper;
+import com.ruoyi.account.service.AgentApplicationService;
import com.ruoyi.account.service.AppUserService;
import com.ruoyi.account.service.VipCenterService;
import com.ruoyi.account.service.VipSettingService;
@@ -22,11 +26,10 @@
import com.ruoyi.other.api.feignClient.VipGoodClient;
import com.ruoyi.system.api.model.LoginUser;
import org.springframework.stereotype.Service;
+import org.springframework.transaction.annotation.Transactional;
import javax.annotation.Resource;
-import java.util.List;
-import java.util.Map;
-import java.util.Set;
+import java.util.*;
import java.util.stream.Collectors;
@Service
@@ -36,294 +39,272 @@
@Resource
private RemoteOrderGoodsClient remoteOrderGoodsClient;
@Resource
- private VipGoodClient vipGoodClient;
- @Resource
private VipSettingService vipSettingService;
@Resource
private ShopClient shopClient;
@Resource
private TokenService tokenService;
@Resource
- private GoodsClient goodsClient;
+ private AgentApplicationMapper agentApplicationMapper;
+ // 钻石会员
+ private static final int VIP_ID_DIAMOND = 3;
+ // 门店合伙人
+ private static final int VIP_ID_STORE_PARTNER = 4;
+ // 城市合伙人
+ private static final int VIP_ID_CITY_PARTNER = 5;
+ // 全国合伙人
+ private static final int VIP_ID_NATIONAL_PARTNER = 6;
+ // 全球合伙人
+ private static final int VIP_ID_GLOBAL_PARTNER = 7;
- @Override
- public Boolean checkReadyToBeProxy(Long userId,Integer vipId) {
+ /**
+ * 判断是否满足申请门店合伙人的条件
+ * @param userId 用户ID
+ * @param vipId 会员等级ID
+ * @return 是否满足条件
+ */
+ public Boolean isEligibleForStorePartner(Long userId, Integer vipId) {
AppUser appUser = appUserService.getById(userId);
- // 消费积分
- Integer shopPoint = appUser.getShopPoint();
- // 返佣积分
- Integer sharePoint = appUser.getSharePoint();
- // 准代理会员设置
- VipSetting vipSetting = vipSettingService.getVipSettingById(4);
- // 获取通过消费积分达成会员等级的开关
- Integer vipLevelUpShopRole = vipSetting.getVipLevelUpShopRole();
- // 获取指定购买商品
- boolean b = false;
- String[] split = vipSetting.getGoodIds().split(",");
- for (String s : split) {
- R<List<Order>> orderListByUserIdAndGoodsId = remoteOrderGoodsClient.getOrderListByUserIdAndGoodsId(userId, Integer.valueOf(s));
- if (R.isSuccess(orderListByUserIdAndGoodsId)){
- List<Order> orderList = orderListByUserIdAndGoodsId.getData();
- if (orderList.size() > 0){
- b = true;
- break;
- }
- }
- }
- if (b && null != vipLevelUpShopRole && vipLevelUpShopRole == 1){
- // 消费积分阈值
- Integer vipLevelUpShop = vipSetting.getVipLevelUpShop();
- // 返佣积分阈值
- Integer vipLevelUpShare = vipSetting.getVipLevelUpShare();
- // 判断是否满足消费积分和返佣积分
- if (shopPoint.compareTo(vipLevelUpShop) >= 0 && sharePoint.compareTo(vipLevelUpShare) >= 0){
- return true;
- }
- }
-
- Integer vipLevelUpNumRole = vipSetting.getVipLevelUpNumRole();
- if (b && null != vipLevelUpNumRole && vipLevelUpNumRole == 1){
- // 直推钻石用户数阈值
- Integer vipDirectNum = vipSetting.getVipDirectNum();
- // 获取用户直推钻石用户数量
- long userDiamondsCount = appUserService.count(new LambdaQueryWrapper<AppUser>()
- .eq(AppUser::getInviteUserId, userId)
- .eq(AppUser::getDelFlag, 0)
- .eq(AppUser::getStatus, 1)
- .gt(AppUser::getVipId, 2));
- // 判断是否满足直推钻石用户数量
- return userDiamondsCount >= vipDirectNum.longValue();
- }
- return false;
- }
-
- @Override
- public Boolean checkReadyToBeAgent(Long userId) {
- AppUser appUser = appUserService.getById(userId);
- // 消费积分
- Integer shopPoint = appUser.getShopPoint();
- // 返佣积分
- Integer sharePoint = appUser.getSharePoint();
- // 代理会员设置
- VipSetting vipSetting = vipSettingService.getVipSettingById(5);
- // 获取通过消费积分达成会员等级的开关
- Integer vipLevelUpShopRole = vipSetting.getVipLevelUpShopRole();
-
- boolean b = false;
- String[] split = vipSetting.getGoodIds().split(",");
- for (String s : split) {
- R<List<Order>> orderListByUserIdAndGoodsId = remoteOrderGoodsClient.getOrderListByUserIdAndGoodsId(userId, Integer.valueOf(s));
- if (R.isSuccess(orderListByUserIdAndGoodsId)){
- List<Order> orderList = orderListByUserIdAndGoodsId.getData();
- if (orderList.size() > 0){
- b = true;
- break;
- }
- }
- }
- if (b && null != vipLevelUpShopRole && vipLevelUpShopRole == 1){
- // 消费积分阈值
- Integer vipLevelUpShop = vipSetting.getVipLevelUpShop();
- // 返佣积分阈值
- Integer vipLevelUpShare = vipSetting.getVipLevelUpShare();
- // 判断是否满足消费积分和返佣积分
- if (shopPoint.compareTo(vipLevelUpShop) >= 0 && sharePoint.compareTo(vipLevelUpShare) >= 0){
- return true;
- }
- }
-
- Integer vipLevelUpNumRole = vipSetting.getVipLevelUpNumRole();
- if (b && null != vipLevelUpNumRole && vipLevelUpNumRole == 1){
- // 直推钻石用户数阈值
- Integer vipDirectNum = vipSetting.getVipDirectNum();
- // 获取用户直推钻石用户数量
- long userDiamondsCount = appUserService.count(new LambdaQueryWrapper<AppUser>()
- .eq(AppUser::getInviteUserId, userId)
- .eq(AppUser::getVipId, 3));
- // 判断是否满足直推钻石用户数量
- return userDiamondsCount >= vipDirectNum.longValue();
- }
- return false;
- }
-
- @Override
- public Boolean checkReadyToBeTotalAgent(Long userId) {
- AppUser appUser = appUserService.getById(userId);
- // 获取总代会员设置
- VipSetting vipSetting = vipSettingService.getVipSettingById(6);
-
- // 获取指定购买商品
- boolean b = false;
- String[] split = vipSetting.getGoodIds().split(",");
- for (String s : split) {
- R<List<Order>> orderListByUserIdAndGoodsId = remoteOrderGoodsClient.getOrderListByUserIdAndGoodsId(userId, Integer.valueOf(s));
- if (R.isSuccess(orderListByUserIdAndGoodsId)){
- List<Order> orderList = orderListByUserIdAndGoodsId.getData();
- if (orderList.size() > 0){
- b = true;
- break;
- }
- }
- }
-
- // 获取会员等级是否必须达到代理
- Integer vipLevelUpProxyRole = vipSetting.getVipLevelUpProxyRole();
- if (b && vipLevelUpProxyRole == 1 && appUser.getVipId() == 5){
+ VipSetting vipSetting = vipSettingService.getVipSettingById(VIP_ID_STORE_PARTNER);
+ // 判断是否已经购买过指定商品
+ if (hasPurchasedGoods(userId, vipSetting.getGoodIds())) {
return true;
}
- // 消费积分
- Integer shopPoint = appUser.getShopPoint();
- // 返佣积分
- Integer sharePoint = appUser.getSharePoint();
- // 获取通过消费积分达成会员等级的开关
- Integer vipLevelUpShopRole = vipSetting.getVipLevelUpShopRole();
- if (b && null != vipLevelUpShopRole && vipLevelUpShopRole == 1){
- // 消费积分阈值
- Integer vipLevelUpShop = vipSetting.getVipLevelUpShop();
- // 返佣积分阈值
- Integer vipLevelUpShare = vipSetting.getVipLevelUpShare();
- // 判断是否满足消费积分和返佣积分
- if (shopPoint.compareTo(vipLevelUpShop) >= 0 && sharePoint.compareTo(vipLevelUpShare) >= 0){
- return true;
- }
- }
-
- Integer vipLevelUpNumRole = vipSetting.getVipLevelUpNumRole();
- if (b && null != vipLevelUpNumRole && vipLevelUpNumRole == 1){
- // 直推代理用户数阈值
- Integer vipDirectNum = vipSetting.getVipDirectNum();
- // 准代理用户数阈值
- Integer vipDirectVipNum = vipSetting.getVipDirectVipNum();
- // 获取用户直推代理用户数量
- List<AppUser> userAgentList = appUserService.list(new LambdaQueryWrapper<AppUser>()
- .eq(AppUser::getInviteUserId, userId)
- .eq(AppUser::getVipId, 5));
-
- // 代理下的准代理数量
- List<Long> userQuasiAgent = userAgentList.stream().map(AppUser::getId).collect(Collectors.toList());
- long userQuasiAgentCount = 0;
- if(userQuasiAgent.size() > 0){
- userQuasiAgentCount = appUserService.count(new LambdaQueryWrapper<AppUser>()
- .in(AppUser::getInviteUserId, userQuasiAgent)
- .eq(AppUser::getVipId, 4));
- }
-
- // 判断是否满足直推代理用户数量和准代理数量
- return userAgentList.size() >= vipDirectNum && userQuasiAgentCount >= vipDirectVipNum.longValue();
- }
- return false;
+ // 判断是否满足条件
+ return meetsPointsAndDirectUsersCriteria(appUser, vipSetting);
}
- @Override
- public Boolean checkReadyToBePartner(Long userId) {
+ /**
+ * 判断是否满足申请城市合伙人的条件
+ * @param userId 用户ID
+ * @return 是否满足条件
+ */
+ public Boolean isEligibleForCityPartner(Long userId) {
AppUser appUser = appUserService.getById(userId);
- // 消费积分
- Integer shopPoint = appUser.getShopPoint();
- // 返佣积分
- Integer sharePoint = appUser.getSharePoint();
- // 合伙人会员设置
- VipSetting vipSetting = vipSettingService.getVipSettingById(7);
- // 获取指定购买商品
- boolean b = false;
- String[] split = vipSetting.getGoodIds().split(",");
- for (String s : split) {
- R<List<Order>> orderListByUserIdAndGoodsId = remoteOrderGoodsClient.getOrderListByUserIdAndGoodsId(userId, Integer.valueOf(s));
- if (R.isSuccess(orderListByUserIdAndGoodsId)){
- List<Order> orderList = orderListByUserIdAndGoodsId.getData();
- if (orderList.size() > 0){
- b = true;
- break;
- }
- }
+
+ VipSetting vipSetting = vipSettingService.getVipSettingById(VIP_ID_CITY_PARTNER);
+
+ if (hasPurchasedGoods(userId, vipSetting.getGoodIds())) {
+ return true;
}
- // 获取通过消费积分达成会员等级的开关
- Integer vipLevelUpShopRole = vipSetting.getVipLevelUpShopRole();
- if (b && null != vipLevelUpShopRole && vipLevelUpShopRole == 1){
- // 消费积分阈值
- Integer vipLevelUpShop = vipSetting.getVipLevelUpShop();
- // 返佣积分阈值
- Integer vipLevelUpShare = vipSetting.getVipLevelUpShare();
- // 判断是否满足消费积分和返佣积分
- if (shopPoint.compareTo(vipLevelUpShop) >= 0 && sharePoint.compareTo(vipLevelUpShare) >= 0){
+ return meetsPointsAndDirectUsersCriteria(appUser, vipSetting);
+ }
+
+ /**
+ * 判断是否满足申请全国合伙人的条件
+ * @param userId 用户ID
+ * @return 是否满足条件
+ */
+ public Boolean isEligibleForNationalPartner(Long userId) {
+ AppUser appUser = appUserService.getById(userId);
+ VipSetting vipSetting = vipSettingService.getVipSettingById(VIP_ID_NATIONAL_PARTNER);
+
+ // 判断是否已经购买过指定商品
+ if (hasPurchasedGoods(userId, vipSetting.getGoodIds())) {
+ return true;
+ }
+
+ if (vipSetting.getVipLevelUpProxyRole() == 1 && appUser.getVipId() == VIP_ID_CITY_PARTNER) {
+ return true;
+ }
+
+ return meetsPointsAndDirectUsersCriteria(appUser, vipSetting);
+ }
+
+ /**
+ * 判断是否满足申请全球合伙人的条件
+ * @param userId 用户ID
+ * @return 是否满足条件
+ */
+ public Boolean isEligibleForGlobalPartner(Long userId) {
+ AppUser appUser = appUserService.getById(userId);
+ VipSetting vipSetting = vipSettingService.getVipSettingById(VIP_ID_GLOBAL_PARTNER);
+
+ if (hasPurchasedGoods(userId, vipSetting.getGoodIds())) {
+ return true;
+ }
+
+ return meetsPointsAndDirectUsersCriteria(appUser, vipSetting);
+ }
+
+ /**
+ * 判断是否已经申请过
+ * @param userId 用户ID
+ * @param vipId 会员等级ID
+ * @return 是否已经申请过
+ */
+ private boolean hasPendingApplication(Long userId, Integer vipId) {
+ return agentApplicationMapper.selectCount(new QueryWrapper<AgentApplication>()
+ .eq("app_user_id", userId)
+ .eq("application_vip_id", vipId)
+ .ne("status", 3)
+ .eq("del_flag", 0)) > 0;
+ }
+
+ /**
+ * 判断是否已经购买过指定商品
+ * @param userId 用户ID
+ * @param goodIds 商品ID列表
+ * @return 是否已经购买过指定商品
+ */
+ private boolean hasPurchasedGoods(Long userId, String goodIds) {
+ if (goodIds == null || goodIds.isEmpty()) {
+ return false;
+ }
+ return Arrays.stream(goodIds.split(","))
+ .anyMatch(goodId -> {
+ R<List<Order>> orderResponse = remoteOrderGoodsClient.getOrderListByUserIdAndGoodsId(userId, Integer.valueOf(goodId));
+ return R.isSuccess(orderResponse) && !orderResponse.getData().isEmpty();
+ });
+ }
+
+ /**
+ * 判断是否满足条件
+ * @param appUser 用户信息
+ * @param vipSetting 会员设置
+ * @return 是否满足条件
+ */
+ private boolean meetsPointsAndDirectUsersCriteria(AppUser appUser, VipSetting vipSetting) {
+ // 满足消费积分和返佣积分
+ if (vipSetting.getVipLevelUpShopRole() == 1) {
+ if (appUser.getShopPoint() >= vipSetting.getVipLevelUpShop() &&
+ appUser.getSharePoint() >= vipSetting.getVipLevelUpShare()) {
return true;
}
}
- Integer vipLevelUpNumRole = vipSetting.getVipLevelUpNumRole();
- if (b && null != vipLevelUpNumRole && vipLevelUpNumRole == 1){
- // 直推代理用户数阈值
- Integer vipDirectNum = vipSetting.getVipDirectNum();
- // 准代理用户数阈值
- Integer vipDirectVipNum = vipSetting.getVipDirectVipNum();
- // 总代用户数阈值
- Integer vipTeamVipNum = vipSetting.getVipTeamVipNum();
- // 获取开店数量阈值
- Integer vipOpenShopNum = vipSetting.getVipOpenShopNum();
+ long directDiamondUserCount = getDirectDiamondUserCount(appUser.getId()); // 直推钻石会员数量
+ if (vipSetting.getId() < VIP_ID_NATIONAL_PARTNER){ // 门店合伙人、城市合伙人
+ if (vipSetting.getVipLevelUpNumRole() == 1) {
+ return directDiamondUserCount >= vipSetting.getVipDirectNum(); //直推钻石会员数量大于等于指定数量
+ }
+ }else if (vipSetting.getId() == VIP_ID_NATIONAL_PARTNER){ // 全国合伙人
+ if (vipSetting.getVipLevelUpNumRole() == 1){
+ List<AppUser> appUsers = appUserService.list(new LambdaQueryWrapper<AppUser>()
+ .eq(AppUser::getInviteUserId, appUser.getId())
+ .ge(AppUser::getVipId, VIP_ID_CITY_PARTNER)
+ .eq(AppUser::getDelFlag, 0));
- // 获取直推用户有超过指定门店数量的用户
- List<Long> userShopList = appUserService.list(new LambdaQueryWrapper<AppUser>()
- .eq(AppUser::getInviteUserId, userId))
- .stream().map(AppUser::getId).collect(Collectors.toList());
- if (CollectionUtil.isNotEmpty(userShopList)){
- R<List<Shop>> r = shopClient.getShopByUserIds(userShopList);
- List<Shop> shopList = r.getData();
- if (CollectionUtil.isNotEmpty(shopList)){
- Map<Long, List<Shop>> shopUserMap = shopList.stream().collect(Collectors.groupingBy(Shop::getAppUserId));
-
- // 查找 list 长度大于 3 的 key
- Set<Long> shopUserIdSet = shopUserMap.entrySet().stream()
- .filter(entry -> entry.getValue().size() >= vipOpenShopNum)
- .map(Map.Entry::getKey)
- .collect(Collectors.toSet());
-
- // 获取用户直推总代理数量
- List<AppUser> userTotalAgentList = appUserService.list(new LambdaQueryWrapper<AppUser>()
- .in(AppUser::getId, shopUserIdSet)
- .eq(AppUser::getVipId, 6));
-
-
- // 获取用户直推代理用户数量
- List<AppUser> userAgentList = appUserService.list(new LambdaQueryWrapper<AppUser>()
- .in(AppUser::getId, userShopList)
- .gt(AppUser::getVipId, 4));
-
- // 代理下的准代理数量
- List<Long> userQuasiAgent = userAgentList.stream().map(AppUser::getId).collect(Collectors.toList());
- long userQuasiAgentCount = 0;
- if(userQuasiAgent.size() > 0){
- userQuasiAgentCount = appUserService.count(new LambdaQueryWrapper<AppUser>()
- .in(AppUser::getInviteUserId, userQuasiAgent)
- .eq(AppUser::getVipId, 4));
- }
-
- // 判断是否满足直推代理用户数量和准代理数量
- return userTotalAgentList.size() >= vipTeamVipNum && userAgentList.size() >= vipDirectNum &&
- userQuasiAgentCount >= vipDirectVipNum;
-
+ if (appUsers.size() >= vipSetting.getVipDirectNum()){ // 直推城市合伙人数量大于等于指定数量
+ List<Long> userIds = appUsers.stream().map(AppUser::getId).collect(Collectors.toList());
+ long directStorePartnerCount = getDirectStorePartnerCount(userIds);
+ return directStorePartnerCount >= vipSetting.getVipDirectVipNum(); // 城市合伙人下的门店合伙人数量大于等于指定数量
}
+
+ }
+ }else if (vipSetting.getId() == VIP_ID_GLOBAL_PARTNER){ // 全球合伙人
+ if (vipSetting.getVipLevelUpNumRole() == 1){
+
+ // 城市合伙人用户数阈值
+ Integer vipDirectNum = vipSetting.getVipDirectNum();
+ // 门店合伙人用户数阈值
+ Integer vipDirectVipNum = vipSetting.getVipDirectVipNum();
+ // 全国合伙人用户数阈值
+ Integer vipTeamVipNum = vipSetting.getVipTeamVipNum();
+ // 开店数量阈值
+ Integer vipOpenShopNum = vipSetting.getVipOpenShopNum();
+
+
+ // 1.直推用户达到指定数量会员等级最低为城市合伙人
+ List<AppUser> appUsers = appUserService.list(new LambdaQueryWrapper<AppUser>()
+ .eq(AppUser::getInviteUserId, appUser.getId())
+ .ge(AppUser::getVipId, VIP_ID_CITY_PARTNER)
+ .eq(AppUser::getDelFlag, 0));
+
+
+ if (appUsers.size() >= vipDirectNum ){
+ // 2.城市合伙人下的门店合伙人数量达到指定人数
+ List<Long> userIds = appUsers.stream().map(AppUser::getId).collect(Collectors.toList());
+ long directStorePartnerCount = getDirectStorePartnerCount(userIds);
+ if (directStorePartnerCount >= vipDirectVipNum){
+
+ // 3.直推用户达到指定数量会员等级最低为全国合伙人并且已经开了指定门店数量
+ List<AppUser> appUsers2 = appUserService.list(new LambdaQueryWrapper<AppUser>()
+ .eq(AppUser::getInviteUserId, appUser.getId())
+ .ge(AppUser::getVipId, VIP_ID_NATIONAL_PARTNER)
+ .eq(AppUser::getDelFlag, 0));
+ return appUsers2.size() >= vipTeamVipNum && appUsers2.size() >= vipOpenShopNum;
+ }
+ }
+
}
}
+
return false;
}
- @Override
- public Boolean check(Integer type) {
+ /**
+ * 获取指定用户直推钻石会员的数量
+ */
+ public long getDirectDiamondUserCount(Long userId) {
+ AppUser appUser = appUserService.getById(userId);
+ if (appUser == null) {
+ return 0;
+ }
+ return appUserService.count(new LambdaQueryWrapper<AppUser>()
+ .eq(AppUser::getInviteUserId, appUser.getId())
+ .eq(AppUser::getVipId, VIP_ID_DIAMOND));
+ }
+
+ /**
+ * 获取指定用户下级门店合伙人的数量
+ */
+ public long getDirectStorePartnerCount(List<Long> userIds) {
+ List<AppUser> allSubordinates = getAllSubordinates(userIds);
+ return allSubordinates.stream()
+ .filter(appUser -> appUser.getVipId().equals(VIP_ID_STORE_PARTNER))
+ .count();
+ }
+
+ public List<AppUser> getAllSubordinates(List<Long> userIds) {
+ List<AppUser> allSubordinates = new ArrayList<>();
+ Set<Long> processedUsers = new HashSet<>(); // 用于避免重复添加用户
+
+ // 遍历每个用户ID
+ for (Long userId : userIds) {
+ collectSubordinates(userId, allSubordinates, processedUsers);
+ }
+
+ return allSubordinates;
+ }
+
+ private void collectSubordinates(Long userId, List<AppUser> allSubordinates, Set<Long> processedUsers) {
+ if (processedUsers.contains(userId)) {
+ // 如果已经处理过该用户,则跳过,防止循环引用导致的无限递归
+ return;
+ }
+ processedUsers.add(userId);
+
+ List<AppUser> directChildren = appUserService.list(new LambdaQueryWrapper<AppUser>()
+ .eq(AppUser::getInviteUserId, userId));
+
+ for (AppUser child : directChildren) {
+ if (!allSubordinates.contains(child)) { // 确保不添加重复的用户
+ allSubordinates.add(child); // 添加直接下级
+ }
+ collectSubordinates(child.getId(), allSubordinates, processedUsers); // 递归添加间接下级
+ }
+ }
+
+ public Boolean checkEligibility(Integer type) {
LoginUser loginUser = tokenService.getLoginUserApplet();
- Long userid = loginUser.getUserid();
- if (type == 4){
- return checkReadyToBeProxy(userid, type);
- }else if (type == 5){
- return checkReadyToBeAgent(userid);
- }else if (type == 6){
- return checkReadyToBeTotalAgent(userid);
- }else if (type == 7){
- return checkReadyToBePartner(userid);
- }else {
- throw new ServiceException("参数错误");
+ Long userId = loginUser.getUserid();
+
+ switch (type) {
+ case VIP_ID_STORE_PARTNER:
+ return isEligibleForStorePartner(userId, type);
+ case VIP_ID_CITY_PARTNER:
+ return isEligibleForCityPartner(userId);
+ case VIP_ID_NATIONAL_PARTNER:
+ return isEligibleForNationalPartner(userId);
+ case VIP_ID_GLOBAL_PARTNER:
+ return isEligibleForGlobalPartner(userId);
+ default:
+ throw new ServiceException("参数错误");
}
}
}
--
Gitblit v1.7.1