From 12b95a4ef0392330f275f0a9fa9da42bb39bb5bd Mon Sep 17 00:00:00 2001
From: cloudroam <cloudroam>
Date: 星期二, 07 一月 2025 16:10:51 +0800
Subject: [PATCH] add:配置2
---
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