From f75496139d661ee4c0550e4e10a86b899371637a Mon Sep 17 00:00:00 2001 From: liujie <1793218484@qq.com> Date: 星期五, 29 八月 2025 09:18:52 +0800 Subject: [PATCH] Merge branch '2.0' of http://120.76.84.145:10101/gitblit/r/java/PlayPai into 2.0 --- cloud-server-account/src/main/java/com/dsh/account/service/impl/VipPaymentServiceImpl.java | 6 +++--- 1 files changed, 3 insertions(+), 3 deletions(-) diff --git a/cloud-server-account/src/main/java/com/dsh/account/service/impl/VipPaymentServiceImpl.java b/cloud-server-account/src/main/java/com/dsh/account/service/impl/VipPaymentServiceImpl.java index 6734e97..73654b5 100644 --- a/cloud-server-account/src/main/java/com/dsh/account/service/impl/VipPaymentServiceImpl.java +++ b/cloud-server-account/src/main/java/com/dsh/account/service/impl/VipPaymentServiceImpl.java @@ -250,16 +250,16 @@ switch (vip.getTimeType()) { case 1: // 天 - localDateTime.plusDays(time); + localDateTime = localDateTime.plusDays(time); break; case 2: // 月 - localDateTime.plusMonths(time); + localDateTime = localDateTime.plusMonths(time); break; case 3: // 年 - localDateTime.plusYears(time); + localDateTime = localDateTime.plusYears(time); break; } appUser.setIsVip(1); -- Gitblit v1.7.1