From cbf2486983b77a27af9968bbb362cb8d43789115 Mon Sep 17 00:00:00 2001
From: Pu Zhibing <393733352@qq.com>
Date: 星期三, 26 三月 2025 15:30:53 +0800
Subject: [PATCH] 修改统计bug和部分功能修改

---
 ruoyi-api/ruoyi-api-other/src/main/java/com/ruoyi/other/api/domain/ShopPointCopy.java |   17 ++++++-----------
 1 files changed, 6 insertions(+), 11 deletions(-)

diff --git a/ruoyi-api/ruoyi-api-other/src/main/java/com/ruoyi/other/api/domain/ShopPointCopy.java b/ruoyi-api/ruoyi-api-other/src/main/java/com/ruoyi/other/api/domain/ShopPointCopy.java
index 02c4398..d7731d0 100644
--- a/ruoyi-api/ruoyi-api-other/src/main/java/com/ruoyi/other/api/domain/ShopPointCopy.java
+++ b/ruoyi-api/ruoyi-api-other/src/main/java/com/ruoyi/other/api/domain/ShopPointCopy.java
@@ -25,7 +25,7 @@
  */
 @Data
 @EqualsAndHashCode(callSuper = false)
-@TableName("t_shop_point")
+@TableName("t_shop_point_copy")
 @ApiModel(value="ShopPoint对象", description="")
 public class ShopPointCopy implements Serializable {
 
@@ -61,20 +61,10 @@
     @Excel(name = "变动时间")
     private LocalDateTime createTime;
 
-    @ApiModelProperty(value = "历史余额")
-    @TableField("historical_point")
-    private Integer historicalPoint;
-
     @ApiModelProperty(value = "变动金额")
     @TableField("variable_point")
     @Excel(name = "变动金额")
     private Integer variablePoint;
-    
-    @ApiModelProperty(value = "变动后余额")
-    @TableField("balance")
-    private Integer balance;
-
-
 
     @ApiModelProperty(value = "变动用户id")
     @TableField("create_user_id")
@@ -87,6 +77,10 @@
     @ApiModelProperty(value = "订单号")
     @TableField("order_num")
     private String orderNum;
+    
+    @ApiModelProperty(value = "变动方向(-1:减少,1:增加)")
+    @TableField("change_direction")
+    private Integer changeDirection;
 
 
 
@@ -117,4 +111,5 @@
     private Integer pageSize;
 
 
+
 }

--
Gitblit v1.7.1