From 009ad0e437cf1593e5f3ef123607b252633f3749 Mon Sep 17 00:00:00 2001
From: 陶杰 <1378534974@qq.com>
Date: 星期一, 28 十月 2024 17:19:47 +0800
Subject: [PATCH] 1.提现记录-待审核

---
 src/main/java/com/mzl/flower/dto/response/wallet/WalletBillRecordVO.java |   12 ++++++++++++
 1 files changed, 12 insertions(+), 0 deletions(-)

diff --git a/src/main/java/com/mzl/flower/dto/response/wallet/WalletBillRecordVO.java b/src/main/java/com/mzl/flower/dto/response/wallet/WalletBillRecordVO.java
index 51af78a..5ed86d7 100644
--- a/src/main/java/com/mzl/flower/dto/response/wallet/WalletBillRecordVO.java
+++ b/src/main/java/com/mzl/flower/dto/response/wallet/WalletBillRecordVO.java
@@ -6,13 +6,17 @@
 import lombok.Data;
 
 import java.math.BigDecimal;
+import java.time.LocalDateTime;
 
 @Data
 public class WalletBillRecordVO extends AbstractTransDTO {
+    private Long id;
 
     @ApiModelProperty(value = "供应商Id")
     private Long supplierId;
 
+    @ApiModelProperty(value = "供应商名称")
+    private String supplierName;
     @ApiModelProperty(value = "钱包Id")
     private Long walletId;
 
@@ -42,6 +46,14 @@
     @ApiModelProperty(value = "余额")
     private BigDecimal balance;
 
+    @ApiModelProperty("提交时间")
+    private LocalDateTime createTime;
+
+    @ApiModelProperty(value = "审核时间")
+    private LocalDateTime approveTime;
+
+    @ApiModelProperty(value = "备注")
+    private String remark;
     @ApiModelProperty(value = "转账明细id")
     private String transferDetailId;
 

--
Gitblit v1.9.3