From e92b00089d8d57899df380135d79864dade09837 Mon Sep 17 00:00:00 2001
From: xiaoyong931011 <15274802129@163.com>
Date: Thu, 09 Feb 2023 16:18:59 +0800
Subject: [PATCH] 修改波场JAR 手续费修改成15trx
---
src/main/resources/mapper/dapp/DappMemberDao.xml | 6 +++---
1 files changed, 3 insertions(+), 3 deletions(-)
diff --git a/src/main/resources/mapper/dapp/DappMemberDao.xml b/src/main/resources/mapper/dapp/DappMemberDao.xml
index 9cbf160..dc49f0f 100644
--- a/src/main/resources/mapper/dapp/DappMemberDao.xml
+++ b/src/main/resources/mapper/dapp/DappMemberDao.xml
@@ -19,8 +19,8 @@
b.total_amount totalAmount,
b.frozen_amount frozenAmount,
b.available_amount availableAmount,
- d.address coinAddress
- from dapp_member a
+ IFNULL(d.address,'-') coinAddress
+ from dapp_member a
left join dapp_wallet_coin b on a.id = b.member_id
left join dapp_member c on a.referer_id = c.invite_id
left join member_coin_address d on d.member_id = a.id and d.is_biyict = 1 and d.tag = 'TRC20'
@@ -319,7 +319,7 @@
left join dapp_member b on b.id = a.member_id
<where>
date_format(a.create_time, '%Y-%m-%d') = #{record.createTimeStr}
- and a.is_inside = 'N'
+ and a.is_inside = 'N' and a.status = 2
<if test="record.description!=null and record.description!=''">
and (a.member_id in (select id from dapp_member where FIND_IN_SET(#{record.description}, referer_ids)))
</if>
--
Gitblit v1.9.1