From 112b6a2ca8a55f056cc259b6bd9ed554fcc263f7 Mon Sep 17 00:00:00 2001
From: xiaoyong931011 <15274802129@163.com>
Date: Mon, 31 Oct 2022 14:58:04 +0800
Subject: [PATCH] 20221021
---
src/main/resources/mapper/dapp/DappMemberDao.xml | 14 ++++++++++++++
1 files changed, 14 insertions(+), 0 deletions(-)
diff --git a/src/main/resources/mapper/dapp/DappMemberDao.xml b/src/main/resources/mapper/dapp/DappMemberDao.xml
index efdb7ac..356652b 100644
--- a/src/main/resources/mapper/dapp/DappMemberDao.xml
+++ b/src/main/resources/mapper/dapp/DappMemberDao.xml
@@ -35,6 +35,9 @@
<if test="record.inviteId != null and record.inviteId != ''">
and a.invite_id = #{record.inviteId}
</if>
+ <if test="record.username != null and record.username != ''">
+ and a.username like CONCAT('%',#{record.username},'%')
+ </if>
</where>
order by create_time desc
</select>
@@ -234,4 +237,15 @@
and b.identity = #{identity}
</select>
+
+ <select id="getAppVersionListInPage" resultType="cc.mrbird.febs.dapp.entity.AppVersion">
+ select a.* from app_version a
+ </select>
+
+ <select id="getChargeListInPage" resultType="cc.mrbird.febs.dapp.entity.MemberCoinChargeEntity">
+ select
+ a.*,b.username username
+ from member_coin_charge a
+ inner join dapp_member b on b.id = a.member_id
+ </select>
</mapper>
\ No newline at end of file
--
Gitblit v1.9.1