From d04e6ff0df71d36c341cae9dde49def1a9f4bd92 Mon Sep 17 00:00:00 2001
From: KKSU <15274802129@163.com>
Date: Tue, 25 Jun 2024 11:16:38 +0800
Subject: [PATCH] 后台矩阵列表
---
src/main/resources/mapper/dapp/MemberCoinWithdrawMapper.xml | 13 ++++++++++++-
1 files changed, 12 insertions(+), 1 deletions(-)
diff --git a/src/main/resources/mapper/dapp/MemberCoinWithdrawMapper.xml b/src/main/resources/mapper/dapp/MemberCoinWithdrawMapper.xml
index 859a9dc..8a17aaa 100644
--- a/src/main/resources/mapper/dapp/MemberCoinWithdrawMapper.xml
+++ b/src/main/resources/mapper/dapp/MemberCoinWithdrawMapper.xml
@@ -4,7 +4,8 @@
<select id="findMemberWithdrawCoinInPage" resultType="cc.mrbird.febs.dapp.vo.AdminMemberCoinWithdrawVo">
SELECT
- s.*
+ s.address,
+ m.address
FROM
member_coin_withdraw s
left join dapp_member m on m.id = s.member_id
@@ -37,4 +38,14 @@
and a.is_inside = #{type}
</select>
+
+
+ <select id="selectListByDate" resultType="cc.mrbird.febs.dapp.entity.MemberCoinWithdrawEntity">
+ select
+ *
+ from
+ member_coin_withdraw
+ where date_format(create_time, '%Y-%m-%d') = date_format(#{date}, '%Y-%m-%d')
+ </select>
+
</mapper>
\ No newline at end of file
--
Gitblit v1.9.1