From 2a1453be9a2ea0e6ecaef7009bea19cc612bc343 Mon Sep 17 00:00:00 2001
From: xiaoyong931011 <15274802129@163.com>
Date: Thu, 01 Dec 2022 16:11:36 +0800
Subject: [PATCH] 20221130

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

diff --git a/src/main/resources/mapper/dapp/DappFundFlowDao.xml b/src/main/resources/mapper/dapp/DappFundFlowDao.xml
index 73b9373..fee7713 100644
--- a/src/main/resources/mapper/dapp/DappFundFlowDao.xml
+++ b/src/main/resources/mapper/dapp/DappFundFlowDao.xml
@@ -68,4 +68,18 @@
         select ifnull(sum(amount), 0) from dapp_fund_flow
         where member_id=#{memberId} and type in (2,3)
     </select>
+
+    <select id="selectNewestFundFlow" resultType="cc.mrbird.febs.dapp.entity.DappFundFlowEntity">
+        select * from dapp_fund_flow
+        where member_id=#{memberId} and type = #{type}
+        order by id desc
+        limit 1
+    </select>
+
+    <select id="selectSumAmountByMemberIdAndTypeAndStatus" resultType="java.math.BigDecimal">
+        select ifnull(sum(amount), 0) from dapp_fund_flow
+        where member_id = #{memberId}
+          and type = #{type}
+        and status = #{status}
+    </select>
 </mapper>
\ No newline at end of file

--
Gitblit v1.9.1