From 30c1c9d16a57d2bbc7cd1511d02c5ddcc6a143f6 Mon Sep 17 00:00:00 2001 From: Helius <wangdoubleone@gmail.com> Date: Tue, 08 Jun 2021 16:10:44 +0800 Subject: [PATCH] modify --- src/main/resources/mapper/otc/OtcMsgUserListDao.xml | 7 ++++++- 1 files changed, 6 insertions(+), 1 deletions(-) diff --git a/src/main/resources/mapper/otc/OtcMsgUserListDao.xml b/src/main/resources/mapper/otc/OtcMsgUserListDao.xml index 0be3ee3..b484781 100644 --- a/src/main/resources/mapper/otc/OtcMsgUserListDao.xml +++ b/src/main/resources/mapper/otc/OtcMsgUserListDao.xml @@ -8,11 +8,16 @@ a.is_read isRead, a.target_id targetId, a.member_id memberId, - a.last_msg_time lastMsgTime + a.last_msg_time lastMsgTime, + b.name nickname from otc_msg_user_list a + left join member b on a.target_id = b.id <where> <if test="record!=null"> a.member_id = #{record.memberId} + <if test="record.nickname != null and record.nickname != ''"> + and b.name like concat('%', #{record.nickname},'%') + </if> </if> </where> order by a.create_time desc -- Gitblit v1.9.1