From 2e6c812f367e1c51ec116a2eb1920872b46bfbea Mon Sep 17 00:00:00 2001
From: Pu Zhibing <393733352@qq.com>
Date: 星期一, 07 四月 2025 11:35:51 +0800
Subject: [PATCH] 修改订单支付金额重复添加问题

---
 ruoyi-api/ruoyi-api-other/src/main/java/com/ruoyi/other/api/domain/ShopPoint.java |   14 ++++----------
 1 files changed, 4 insertions(+), 10 deletions(-)

diff --git a/ruoyi-api/ruoyi-api-other/src/main/java/com/ruoyi/other/api/domain/ShopPoint.java b/ruoyi-api/ruoyi-api-other/src/main/java/com/ruoyi/other/api/domain/ShopPoint.java
index 34e632c..566124b 100644
--- a/ruoyi-api/ruoyi-api-other/src/main/java/com/ruoyi/other/api/domain/ShopPoint.java
+++ b/ruoyi-api/ruoyi-api-other/src/main/java/com/ruoyi/other/api/domain/ShopPoint.java
@@ -62,20 +62,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")
@@ -88,6 +78,10 @@
     @ApiModelProperty(value = "订单号")
     @TableField("order_num")
     private String orderNum;
+    
+    @ApiModelProperty(value = "变动方向(-1:减少,1:增加)")
+    @TableField("change_direction")
+    private Integer changeDirection;
 
 
 

--
Gitblit v1.7.1