From f87b5cb6f7a2f34c983b6988be1fdc8a70e8a06f Mon Sep 17 00:00:00 2001
From: KKSU <15274802129@163.com>
Date: Mon, 20 May 2024 10:19:18 +0800
Subject: [PATCH] 滑点监控

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

diff --git a/src/main/resources/mapper/dapp/DappFundFlowDao.xml b/src/main/resources/mapper/dapp/DappFundFlowDao.xml
index b4d0566..9554e11 100644
--- a/src/main/resources/mapper/dapp/DappFundFlowDao.xml
+++ b/src/main/resources/mapper/dapp/DappFundFlowDao.xml
@@ -135,6 +135,7 @@
         a.amount,
         a.type,
         a.status,
+        a.create_time,
         b.address address
         from dapp_fund_flow a
         left join dapp_member b on a.member_id = b.id
@@ -166,6 +167,11 @@
         a.*
         from dapp_member_fund a
         left join dapp_member b on a.member_id = b.id
+        <where>
+            <if test="record.memberId != null">
+                and a.member_id = #{record.memberId}
+            </if>
+        </where>
         order by a.create_time desc
     </select>
 </mapper>
\ No newline at end of file

--
Gitblit v1.9.1