From d7819bb819cd897d5933ac98bdec7e3ccc70846c Mon Sep 17 00:00:00 2001
From: cloudroam <cloudroam>
Date: 星期三, 23 十月 2024 10:55:24 +0800
Subject: [PATCH] fix: 冲突
---
src/main/java/com/mzl/flower/dto/request/wallet/WalletWithdrawRecordDTO.java | 15 +++++++++++++++
1 files changed, 15 insertions(+), 0 deletions(-)
diff --git a/src/main/java/com/mzl/flower/dto/request/wallet/WalletWithdrawRecordDTO.java b/src/main/java/com/mzl/flower/dto/request/wallet/WalletWithdrawRecordDTO.java
new file mode 100644
index 0000000..600092b
--- /dev/null
+++ b/src/main/java/com/mzl/flower/dto/request/wallet/WalletWithdrawRecordDTO.java
@@ -0,0 +1,15 @@
+package com.mzl.flower.dto.request.wallet;
+
+import io.swagger.annotations.ApiModelProperty;
+import lombok.Data;
+
+@Data
+public class WalletWithdrawRecordDTO {
+ private Long id;
+
+ @ApiModelProperty(value = "审核状态(待审核、已通过、已拒绝)")
+ private Integer approveState;
+
+ @ApiModelProperty(value = "不通过原因")
+ private String rejectReason;
+}
--
Gitblit v1.9.3