From ef552b45c7affb3b91c39d2451a0233c1da67814 Mon Sep 17 00:00:00 2001
From: xiaoyong931011 <15274802129@163.com>
Date: Tue, 22 Aug 2023 16:24:35 +0800
Subject: [PATCH] 后台修改

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

diff --git a/src/main/resources/mapper/dapp/DappFundFlowDao.xml b/src/main/resources/mapper/dapp/DappFundFlowDao.xml
index 8e7ae83..e3eff08 100644
--- a/src/main/resources/mapper/dapp/DappFundFlowDao.xml
+++ b/src/main/resources/mapper/dapp/DappFundFlowDao.xml
@@ -47,6 +47,9 @@
             <if test="record.status != null">
                 and a.status = #{record.status}
             </if>
+            <if test="record.flowType != null">
+                and a.flow_type = #{record.flowType}
+            </if>
         </where>
         order by a.create_time desc
     </select>
@@ -167,6 +170,12 @@
         where  type = #{type}
     </select>
 
+    <select id="selectSumAmountByTypeAndDate" resultType="java.math.BigDecimal">
+        select ifnull(sum(amount), 0) from dapp_fund_flow
+        where  type = #{type}
+          and date_format(create_time, '%Y-%m-%d') = date_format(#{dateStr}, '%Y-%m-%d')
+    </select>
+
     <select id="selectOrderMoneyFlowInPage" resultType="cc.mrbird.febs.dapp.vo.AdminMallMoneyFlowVo">
         select
             a.create_time createTime,

--
Gitblit v1.9.1