From dc67b1ffb8c2965a2af676738f022af53302e0b2 Mon Sep 17 00:00:00 2001
From: xiaoyong931011 <15274802129@163.com>
Date: Thu, 27 May 2021 10:38:28 +0800
Subject: [PATCH] 20210527 最多三个待付款
---
src/main/resources/mapper/otc/OtcBlackListDao.xml | 10 ++++++++++
1 files changed, 10 insertions(+), 0 deletions(-)
diff --git a/src/main/resources/mapper/otc/OtcBlackListDao.xml b/src/main/resources/mapper/otc/OtcBlackListDao.xml
index 34f383a..a834238 100644
--- a/src/main/resources/mapper/otc/OtcBlackListDao.xml
+++ b/src/main/resources/mapper/otc/OtcBlackListDao.xml
@@ -6,4 +6,14 @@
select * from otc_black_list
where member_id=#{memberId} and black_member_id=#{blackMemberId}
</select>
+
+ <select id="selectBlackListInPage" resultType="com.xcong.excoin.modules.otc.vo.BlackListVo">
+ select a.id, a.create_time time, b.name from otc_black_list a, member b
+ where a.black_member_id=b.id and a.member_id=#{memberId}
+ </select>
+
+ <select id="selectBlackListByMemberId" resultType="com.xcong.excoin.modules.otc.entity.OtcBlackList">
+ select * from otc_black_list
+ where member_id=#{memberId}
+ </select>
</mapper>
\ No newline at end of file
--
Gitblit v1.9.1