From 2ee6f009d5703e1ac72482fcaba739a27a30f016 Mon Sep 17 00:00:00 2001 From: xiaoyong931011 <15274802129@163.com> Date: Sun, 28 Jun 2020 16:15:19 +0800 Subject: [PATCH] 20200628 代码提交 --- src/main/resources/mapper/member/MemberCoinAddressDao.xml | 14 ++++++++++++++ 1 files changed, 14 insertions(+), 0 deletions(-) diff --git a/src/main/resources/mapper/member/MemberCoinAddressDao.xml b/src/main/resources/mapper/member/MemberCoinAddressDao.xml index 7355ec0..ade0be5 100644 --- a/src/main/resources/mapper/member/MemberCoinAddressDao.xml +++ b/src/main/resources/mapper/member/MemberCoinAddressDao.xml @@ -36,5 +36,19 @@ </if> </where> </select> + + <select id="selectCoinAddressListByMap" resultType="com.xcong.excoin.modules.member.entity.MemberCoinAddressEntity"> + select * from member_coin_address + <where> + is_biyict = 1 + and symbolscoin_id IS NOT NULL + <if test="memberId != null and memberId != ''"> + and member_id = #{memberId} + </if> + <if test="symbol != null and symbol != ''"> + and symbol = #{symbol} + </if> + </where> + </select> </mapper> \ No newline at end of file -- Gitblit v1.9.1