From 65cf739fe077c398d35e58a083a1c7be40a3b7a2 Mon Sep 17 00:00:00 2001
From: xiaoyong931011 <15274802129@163.com>
Date: Sun, 06 Aug 2023 23:32:39 +0800
Subject: [PATCH] 数据修改

---
 src/main/resources/mapper/dapp/DappFundFlowDao.xml |   12 ++++++++++++
 1 files changed, 12 insertions(+), 0 deletions(-)

diff --git a/src/main/resources/mapper/dapp/DappFundFlowDao.xml b/src/main/resources/mapper/dapp/DappFundFlowDao.xml
index d039642..2e67ae5 100644
--- a/src/main/resources/mapper/dapp/DappFundFlowDao.xml
+++ b/src/main/resources/mapper/dapp/DappFundFlowDao.xml
@@ -167,4 +167,16 @@
         select ifnull(sum(amount), 0) from dapp_fund_flow
         where  type = #{type}
     </select>
+
+    <select id="selectOrderMoneyFlowInPage" resultType="cc.mrbird.febs.dapp.vo.AdminMallMoneyFlowVo">
+        select
+            a.create_time createTime,
+            a.amount amount,
+            a.type type,
+            b.address address
+        from dapp_fund_flow a
+                 left join dapp_member b on a.member_id = b.id
+        where a.system_profit_id = #{record.id}
+        order by a.CREATE_TIME desc
+    </select>
 </mapper>
\ No newline at end of file

--
Gitblit v1.9.1