admin
2020-04-21 0b57cfd62e842b309d03467b96a331c673ecad7c
fanli/src/main/java/com/yeshi/fanli/service/impl/user/vip/TeamUserLevelStatisticServiceImpl.java
@@ -39,7 +39,6 @@
      
      // 直接粉丝统计
      int daRenFirstCount = 0;
      int normalFirstCount = 0;
      int highFirstCount = 0;
      int superFirstCount = 0;
      int tearcherFirstCount = 0;
@@ -53,9 +52,7 @@
            UserLevelEnum level = userLevelManager.getUserLevel(ts.getWorkerId());
            if (level == UserLevelEnum.daRen) {
               daRenFirstCount++;
            } else if (level == UserLevelEnum.normalVIP) {
               normalFirstCount++;
            } else if (level == UserLevelEnum.highVIP) {
            }  else if (level == UserLevelEnum.highVIP) {
               highFirstCount++;
            } else if (level == UserLevelEnum.superVIP) {
               superFirstCount++;
@@ -68,7 +65,6 @@
      
      // 间接粉丝统计
      int daRenSecondCount = 0;
      int normalSecondCount = 0;
      int highSecondCount = 0;
      int superSecondCount = 0;
      int tearcherSecondCount = 0;
@@ -82,8 +78,6 @@
            UserLevelEnum level = userLevelManager.getUserLevel(ts.getWorkerId());
            if (level == UserLevelEnum.daRen) {
               daRenSecondCount++;
            } else if (level == UserLevelEnum.normalVIP) {
               normalSecondCount++;
            } else if (level == UserLevelEnum.highVIP) {
               highSecondCount++;
            } else if (level == UserLevelEnum.superVIP) {
@@ -98,8 +92,6 @@
      TeamUserLevelStatistic statistic = new TeamUserLevelStatistic();
      statistic.setDaRenFirstCount(daRenFirstCount);
      statistic.setDaRenSecondCount(daRenSecondCount);
      statistic.setNormalFirstCount(normalFirstCount);
      statistic.setNormalSecondCount(normalSecondCount);
      statistic.setHighFirstCount(highFirstCount);
      statistic.setHighSecondCount(highSecondCount);
      statistic.setSuperFirstCount(superFirstCount);