From 916f8851ccddff8ff764d950667b5fa86f77d7b2 Mon Sep 17 00:00:00 2001 From: yujian <yujian@163.com> Date: 星期五, 24 四月 2020 18:16:50 +0800 Subject: [PATCH] 后台状态切换 --- fanli/src/main/java/com/yeshi/fanli/service/impl/user/vip/UserLevelUpgradedNotifyServiceImpl.java | 5 +---- 1 files changed, 1 insertions(+), 4 deletions(-) diff --git a/fanli/src/main/java/com/yeshi/fanli/service/impl/user/vip/UserLevelUpgradedNotifyServiceImpl.java b/fanli/src/main/java/com/yeshi/fanli/service/impl/user/vip/UserLevelUpgradedNotifyServiceImpl.java index ae917e8..2580f16 100644 --- a/fanli/src/main/java/com/yeshi/fanli/service/impl/user/vip/UserLevelUpgradedNotifyServiceImpl.java +++ b/fanli/src/main/java/com/yeshi/fanli/service/impl/user/vip/UserLevelUpgradedNotifyServiceImpl.java @@ -62,10 +62,7 @@ // 鏌ヨ浣庣瓑绾х殑鏄惁宸茶,濡傝嫢鏈鍒欒涓哄凡璇� if (notify.getToLevel() == UserLevelEnum.highVIP || notify.getToLevel() == UserLevelEnum.superVIP) { List<UserLevelEnum> levels = new ArrayList<>(); - if (notify.getToLevel() == UserLevelEnum.highVIP) { - levels.add(UserLevelEnum.normalVIP); - } else { - levels.add(UserLevelEnum.normalVIP); + if (notify.getToLevel() == UserLevelEnum.superVIP) { levels.add(UserLevelEnum.highVIP); } -- Gitblit v1.8.0