From ef935c98d1fee5db9eb45d0b50fc4b3db78bbcbc Mon Sep 17 00:00:00 2001 From: wuchunlei Date: Sun, 12 Oct 2025 13:27:56 +0800 Subject: [PATCH] =?UTF-8?q?vip=E6=97=A5=E5=BF=97=E8=A1=A8=E6=B7=BB?= =?UTF-8?q?=E5=8A=A0price=E5=AD=97=E6=AE=B5=EF=BC=8C=E4=BF=9D=E5=AD=98?= =?UTF-8?q?=E5=88=9D=E5=A7=8B=E4=BB=98=E6=AC=BE=E9=87=91=E9=A2=9D?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../modules/common/entity/UserVipLog.java | 1 + .../service/impl/UserVipLogServiceImpl.java | 2 + .../controller/StatisticsController.java | 38 ++++++------ .../master/controller/UserVipController.java | 2 + .../resources/mapper/master/UserVipLogDao.xml | 61 +++++++++++-------- 5 files changed, 60 insertions(+), 44 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 b3f9c9f0..feb0d78f 100644 --- a/src/main/java/com/peanut/modules/common/entity/UserVipLog.java +++ b/src/main/java/com/peanut/modules/common/entity/UserVipLog.java @@ -29,6 +29,7 @@ public class UserVipLog implements Serializable { private Integer adminId; private Date startTime; private Date endTime; + private BigDecimal price; private BigDecimal fee; private BigDecimal dayAmount; private String payType; 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 7776ed2c..f533ae58 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 @@ -34,6 +34,7 @@ public class UserVipLogServiceImpl extends ServiceImpl