From 578437af52e1cb25c661efd207273bf49a6e7773 Mon Sep 17 00:00:00 2001
From: xiaoyong931011 <15274802129@163.com>
Date: Mon, 31 Jul 2023 18:13:04 +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