From d5598218d848e5e5c9f7379ddc3d414de23679e1 Mon Sep 17 00:00:00 2001 From: wuchunlei Date: Mon, 22 Sep 2025 11:09:05 +0800 Subject: [PATCH] =?UTF-8?q?vip=E7=BB=9F=E8=AE=A1=E6=94=B6=E5=85=A5?= =?UTF-8?q?=E9=A1=B9=E4=B8=BA=E5=BC=80=E5=A7=8B=E6=97=B6=E9=97=B4=E6=88=96?= =?UTF-8?q?=E8=80=85=E6=94=AF=E4=BB=98=E6=97=B6=E9=97=B4?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../java/com/peanut/modules/common/entity/UserVipLog.java | 1 + .../modules/common/service/impl/UserVipLogServiceImpl.java | 2 ++ .../peanut/modules/master/controller/UserVipController.java | 2 ++ src/main/resources/mapper/master/UserVipLogDao.xml | 6 +++--- 4 files changed, 8 insertions(+), 3 deletions(-) diff --git a/src/main/java/com/peanut/modules/common/entity/UserVipLog.java b/src/main/java/com/peanut/modules/common/entity/UserVipLog.java index 33f0270f..b3f9c9f0 100644 --- a/src/main/java/com/peanut/modules/common/entity/UserVipLog.java +++ b/src/main/java/com/peanut/modules/common/entity/UserVipLog.java @@ -24,6 +24,7 @@ public class UserVipLog implements Serializable { private Integer userVipId; //充值渠道order master等 private String type; + private Date payTime; private String orderSn; private Integer adminId; private Date startTime; diff --git a/src/main/java/com/peanut/modules/common/service/impl/UserVipLogServiceImpl.java b/src/main/java/com/peanut/modules/common/service/impl/UserVipLogServiceImpl.java index b13e6959..918eabff 100644 --- a/src/main/java/com/peanut/modules/common/service/impl/UserVipLogServiceImpl.java +++ b/src/main/java/com/peanut/modules/common/service/impl/UserVipLogServiceImpl.java @@ -9,6 +9,7 @@ import lombok.extern.slf4j.Slf4j; import org.apache.commons.lang.StringUtils; import org.springframework.stereotype.Service; import java.math.BigDecimal; +import java.util.Date; import java.util.List; import java.util.Map; @@ -28,6 +29,7 @@ public class UserVipLogServiceImpl extends ServiceImpl