From 22875a9b883293aa88c9ea02103a1e218835c6bc Mon Sep 17 00:00:00 2001
From: Pu Zhibing <393733352@qq.com>
Date: 星期四, 26 十二月 2024 17:03:19 +0800
Subject: [PATCH] 修改分佣逻辑

---
 ruoyi-api/ruoyi-api-other/src/main/java/com/ruoyi/other/api/domain/Shop.java |   15 ++++++++-------
 1 files changed, 8 insertions(+), 7 deletions(-)

diff --git a/ruoyi-api/ruoyi-api-other/src/main/java/com/ruoyi/other/api/domain/Shop.java b/ruoyi-api/ruoyi-api-other/src/main/java/com/ruoyi/other/api/domain/Shop.java
index 365ee43..a4d8e97 100644
--- a/ruoyi-api/ruoyi-api-other/src/main/java/com/ruoyi/other/api/domain/Shop.java
+++ b/ruoyi-api/ruoyi-api-other/src/main/java/com/ruoyi/other/api/domain/Shop.java
@@ -110,13 +110,13 @@
     @TableField("server_point")
     private Integer serverPoint;
 
-    @ApiModelProperty(value = "下级门店返佣积分")
-    @TableField("lower_level_rebate_points")
-    private Integer lowerLevelRebatePoints;
-
     @ApiModelProperty(value = "门店已用积分")
     @TableField("use_point")
     private Integer usePoint;
+    
+    @ApiModelProperty(value = "门店剩余积分")
+    @TableField("lave_point")
+    private Integer lavePoint;
 
     @ApiModelProperty(value = "门店分佣总金额")
     @TableField("giveaway_all_money")
@@ -141,6 +141,10 @@
     @ApiModelProperty(value = "已提现金额")
     @TableField("withdraw_money")
     private BigDecimal withdrawMoney;
+    
+    @ApiModelProperty(value = "余额")
+    @TableField("balance")
+    private BigDecimal balance;
 
     @ApiModelProperty(value = "门店订单总数")
     @TableField("order_number")
@@ -163,9 +167,6 @@
     @TableField("create_time")
     private LocalDateTime createTime;
 
-    @ApiModelProperty(value = "店长姓名")
-    @TableField(exist = false)
-    private String managerName;
 
 
 }

--
Gitblit v1.7.1