From dc885d07f9f62c60ac90dbd0c44c5fdbb0b00486 Mon Sep 17 00:00:00 2001
From: 陶杰 <1378534974@qq.com>
Date: 星期二, 31 十二月 2024 10:30:36 +0800
Subject: [PATCH] 1.微信登录-用户不存在新注册用户,昵称没有解决

---
 src/main/java/com/mzl/flower/entity/wallet/WalletWithdrawRecordDO.java |   19 +++++++++++++++++--
 1 files changed, 17 insertions(+), 2 deletions(-)

diff --git a/src/main/java/com/mzl/flower/entity/wallet/WalletWithdrawRecordDO.java b/src/main/java/com/mzl/flower/entity/wallet/WalletWithdrawRecordDO.java
index 42c4b3b..663c459 100644
--- a/src/main/java/com/mzl/flower/entity/wallet/WalletWithdrawRecordDO.java
+++ b/src/main/java/com/mzl/flower/entity/wallet/WalletWithdrawRecordDO.java
@@ -30,14 +30,20 @@
     /**
      * 提现金额
      */
-    @ApiModelProperty(value = "钱包Id")
+    @ApiModelProperty(value = "提现金额")
     private BigDecimal amount;
 
     /**
      * 单次可提现金额
      */
-    @ApiModelProperty(value = "提现金额")
+    @ApiModelProperty(value = "单次可提现金额")
     private BigDecimal onceWithdrawAmount;
+
+    /**
+     * 提现类型
+     */
+    @ApiModelProperty(value = "提现类型")
+    private String withdrawType;
 
     /**
      * 提现状态
@@ -75,5 +81,14 @@
     @ApiModelProperty(value = "不通过原因")
     private String rejectReason;
 
+    @ApiModelProperty(value = "原金额")
+    private BigDecimal originalAmount;
+
+    @ApiModelProperty(value = "变动金额")
+    private BigDecimal changeAmount;
+
+    @ApiModelProperty(value = "余额")
+    private BigDecimal balance;
+
 
 }

--
Gitblit v1.9.3