From a8e83d12274b776b215895273e7021c4eb2ba789 Mon Sep 17 00:00:00 2001
From: liujie <1793218484@qq.com>
Date: 星期四, 05 六月 2025 09:54:07 +0800
Subject: [PATCH] 小程序接口 发布优化 首页放行

---
 ruoyi-applet/src/main/java/com/ruoyi/web/controller/system/UserAccountController.java |   13 +++++++++++++
 1 files changed, 13 insertions(+), 0 deletions(-)

diff --git a/ruoyi-applet/src/main/java/com/ruoyi/web/controller/system/UserAccountController.java b/ruoyi-applet/src/main/java/com/ruoyi/web/controller/system/UserAccountController.java
index 80e2b19..e6123fb 100644
--- a/ruoyi-applet/src/main/java/com/ruoyi/web/controller/system/UserAccountController.java
+++ b/ruoyi-applet/src/main/java/com/ruoyi/web/controller/system/UserAccountController.java
@@ -12,6 +12,7 @@
 import com.ruoyi.system.model.*;
 import com.ruoyi.system.query.UserAccountDetailQuery;
 import com.ruoyi.system.service.*;
+import com.ruoyi.system.vo.GetWithdrawalDetailVo;
 import com.ruoyi.system.vo.RegionVo;
 import com.ruoyi.system.vo.UserAccountVo;
 import io.swagger.annotations.Api;
@@ -161,6 +162,18 @@
     }
 
 
+    @ApiOperation(value = "提现说明需求",tags = {"用户钱包模块"})
+    @GetMapping("/getWithdrawalDetail")
+    public R<GetWithdrawalDetailVo> getWithdrawalDetail(@RequestParam String sourceId) {
+        TbWithdrawal withdrawal =  withdrawalService.getById(sourceId);
+        GetWithdrawalDetailVo vo = new GetWithdrawalDetailVo();
+        vo.setImg(withdrawal.getImg());
+        vo.setRemark(withdrawal.getRemark());
+        return R.ok(vo);
+    }
+
+
+
 
 
 

--
Gitblit v1.7.1