From 34ce46da72d7b0b707986ed0f2b6174021bc25ea Mon Sep 17 00:00:00 2001
From: xiaoyong931011 <15274802129@163.com>
Date: Fri, 02 Dec 2022 15:13:23 +0800
Subject: [PATCH] 20221130

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

diff --git a/src/main/resources/mapper/dapp/DappFundFlowDao.xml b/src/main/resources/mapper/dapp/DappFundFlowDao.xml
index a07f24d..f8ed207 100644
--- a/src/main/resources/mapper/dapp/DappFundFlowDao.xml
+++ b/src/main/resources/mapper/dapp/DappFundFlowDao.xml
@@ -21,6 +21,12 @@
             <if test="record.memberId != null">
                 and a.member_id=#{record.memberId}
             </if>
+            <if test="record.fromHash != '' and record.fromHash != null">
+                and a.from_hash = #{record.fromHash}
+            </if>
+            <if test="record.systemProfitId != '' and record.systemProfitId != null">
+                and a.system_profit_id = #{record.systemProfitId}
+            </if>
         </where>
         order by a.create_time desc, a.id desc
     </select>
@@ -75,4 +81,11 @@
         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