From b075056e19b8f59f61fce3433aa04ffed3d746a4 Mon Sep 17 00:00:00 2001
From: Helius <wangdoubleone@gmail.com>
Date: Mon, 14 Nov 2022 09:07:46 +0800
Subject: [PATCH] fix
---
src/main/resources/mapper/dapp/DappTransferRecordDao.xml | 10 ++++++++--
1 files changed, 8 insertions(+), 2 deletions(-)
diff --git a/src/main/resources/mapper/dapp/DappTransferRecordDao.xml b/src/main/resources/mapper/dapp/DappTransferRecordDao.xml
index 4b211f6..ce3ea55 100644
--- a/src/main/resources/mapper/dapp/DappTransferRecordDao.xml
+++ b/src/main/resources/mapper/dapp/DappTransferRecordDao.xml
@@ -5,10 +5,16 @@
<select id="selectInPage" resultType="cc.mrbird.febs.dapp.entity.DappTransferRecordEntity">
select * from dapp_transfer_record
<where>
- <if test="record.address != '' and record.address != null">
- and address=#{record.address}
+ <if test="record.fromAddress != '' and record.fromAddress != null">
+ and address=#{record.fromAddress}
</if>
</where>
+ order by create_time desc
+ </select>
+
+ <select id="selectByHash" resultType="cc.mrbird.febs.dapp.entity.DappTransferRecordEntity">
+ select * from dapp_transfer_record
+ where hash=#{hash}
</select>
</mapper>
\ No newline at end of file
--
Gitblit v1.9.1