From 71656127d2d3fa023eb767343a9ac01172f2802d Mon Sep 17 00:00:00 2001 From: 无关风月 <443237572@qq.com> Date: 星期三, 27 八月 2025 21:31:40 +0800 Subject: [PATCH] bug修改 --- cloud-server-account/src/main/java/com/dsh/account/service/impl/VipPaymentServiceImpl.java | 11 ++++++----- 1 files changed, 6 insertions(+), 5 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 fab2ff4..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); @@ -272,9 +272,10 @@ if (StringUtils.hasLength(couponJson)) { grantCoupon.setCouponJson(couponJson); - grantCoupon.setUserId(vipPayment1.getAppUserId()); - grantCoupon.setVipPaymentId(vipPayment1.getId()); } + grantCoupon.setVipId(vipPayment1.getVipId()); + grantCoupon.setUserId(vipPayment1.getAppUserId()); + grantCoupon.setVipPaymentId(vipPayment1.getId()); String ticketJson = vipPayment1.getTicketJson(); if (StringUtils.hasLength(ticketJson)) { grantCoupon.setTicketJson(ticketJson); -- Gitblit v1.7.1