From 0b57cfd62e842b309d03467b96a331c673ecad7c Mon Sep 17 00:00:00 2001
From: admin <weikou2014>
Date: 星期二, 21 四月 2020 14:08:18 +0800
Subject: [PATCH] 删除普通会员等级

---
 fanli/src/main/java/com/yeshi/fanli/service/impl/user/vip/TeamUserLevelStatisticServiceImpl.java |   10 +---------
 1 files changed, 1 insertions(+), 9 deletions(-)

diff --git a/fanli/src/main/java/com/yeshi/fanli/service/impl/user/vip/TeamUserLevelStatisticServiceImpl.java b/fanli/src/main/java/com/yeshi/fanli/service/impl/user/vip/TeamUserLevelStatisticServiceImpl.java
index 5e6be64..1012708 100644
--- a/fanli/src/main/java/com/yeshi/fanli/service/impl/user/vip/TeamUserLevelStatisticServiceImpl.java
+++ b/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);

--
Gitblit v1.8.0