From fb5549475c11fa264f4a4630638c136c99250d1e Mon Sep 17 00:00:00 2001 From: xiaoyong931011 <15274802129@163.com> Date: Thu, 20 May 2021 11:36:40 +0800 Subject: [PATCH] 20210520 订单更新付款人,订单状态,支付时间 --- src/main/resources/mapper/modules/AgentFriendRelationMapper.xml | 6 +++++- 1 files changed, 5 insertions(+), 1 deletions(-) diff --git a/src/main/resources/mapper/modules/AgentFriendRelationMapper.xml b/src/main/resources/mapper/modules/AgentFriendRelationMapper.xml index e08a891..8a3bee5 100644 --- a/src/main/resources/mapper/modules/AgentFriendRelationMapper.xml +++ b/src/main/resources/mapper/modules/AgentFriendRelationMapper.xml @@ -3,7 +3,11 @@ <mapper namespace="com.xcong.excoin.modules.member.mapper.AgentFriendRelationMapper"> <select id="findAgentFriendRelationListInPage" resultType="com.xcong.excoin.modules.member.entity.AgentFriendRelationEntity"> - select * from agent_friend_relation s left join member m on m.id = s.member_id + select *, + CONCAT(b.first_name, b.second_name) realName + from agent_friend_relation s + left join member m on m.id = s.member_id + LEFT JOIN member_authentication b ON m.id = b.member_id <where> <if test="record != null" > <if test="record.account!=null and record.account!=''"> -- Gitblit v1.9.1