From 14b63e3983d8097c23868733d1f26010f8c61080 Mon Sep 17 00:00:00 2001 From: tianfeng <769204422@qq.com> Date: Mon, 11 May 2026 16:02:44 +0800 Subject: [PATCH] =?UTF-8?q?=E7=BB=8F=E9=AA=8C=E5=8A=A0=E6=88=90=E5=92=8C?= =?UTF-8?q?=E5=95=86=E5=BA=97=E6=8A=98=E6=89=A3=E6=9B=B4=E6=94=B9?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../com/red/circle/other/domain/enums/VipBenefitType.java | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/rc-service/rc-service-other/other-domain/src/main/java/com/red/circle/other/domain/enums/VipBenefitType.java b/rc-service/rc-service-other/other-domain/src/main/java/com/red/circle/other/domain/enums/VipBenefitType.java index 0a22fbfb..5dd0e0d4 100644 --- a/rc-service/rc-service-other/other-domain/src/main/java/com/red/circle/other/domain/enums/VipBenefitType.java +++ b/rc-service/rc-service-other/other-domain/src/main/java/com/red/circle/other/domain/enums/VipBenefitType.java @@ -9,10 +9,10 @@ import java.math.BigDecimal; public enum VipBenefitType { /** 经验加成倍率 */ - XP_RATE("1.0", "1.05", "1.07", "1.10", "1.15", "1.20", "1.25"), + XP_RATE("1.0", "1.00", "1.07", "1.10", "1.15", "1.20", "1.25"), /** 商店折扣 */ - SHOP_DISCOUNT("1.0", "1.0", "1.0", "0.9", "0.85", "0.8", "0.7"); + SHOP_DISCOUNT("1.0", "1.0", "1.0", "1.0", "1.0", "1.0", "1.0"); // index 0 = 非VIP, 1~6 = VIP1~VIP6 private final BigDecimal[] values;