From 5f49840dcf78085b888cab90f61b1efd68c54d4d Mon Sep 17 00:00:00 2001 From: Helius <wangdoubleone@gmail.com> Date: Wed, 15 Dec 2021 18:41:10 +0800 Subject: [PATCH] fix --- gc-shop/src/main/resources/mapper/shop/ScoreDetailsMapper.xml | 2 +- 1 files changed, 1 insertions(+), 1 deletions(-) diff --git a/gc-shop/src/main/resources/mapper/shop/ScoreDetailsMapper.xml b/gc-shop/src/main/resources/mapper/shop/ScoreDetailsMapper.xml index 93d7783..04df2f1 100644 --- a/gc-shop/src/main/resources/mapper/shop/ScoreDetailsMapper.xml +++ b/gc-shop/src/main/resources/mapper/shop/ScoreDetailsMapper.xml @@ -9,7 +9,7 @@ a.CREATED_TIME createTime FROM xzx_score_details a - left join xzx_user_info b on b.user_id = a.user_id + inner join xzx_user_info b on b.user_id = a.user_id WHERE 1 = 1 <if test="record.orderNo != null and record.orderNo != ''"> and a.order_no like concat('%',#{record.orderNo},'%') -- Gitblit v1.9.1