From 9b1eccbc06a6925b18a05cee2ea0ff943e653648 Mon Sep 17 00:00:00 2001 From: liux <963924687@qq.com> Date: Sun, 16 Nov 2025 10:50:01 +0800 Subject: [PATCH] =?UTF-8?q?=E5=8E=A8=E6=88=BF=E9=A6=96=E9=A1=B5=20?= =?UTF-8?q?=E8=AE=BE=E5=A4=87=E9=97=AE=E9=A2=98=E4=BF=AE=E5=A4=8D?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../src/main/resources/mapper/android/UserMapper.xml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/bonus-modules/bonus-smart-canteen/src/main/resources/mapper/android/UserMapper.xml b/bonus-modules/bonus-smart-canteen/src/main/resources/mapper/android/UserMapper.xml index 5248560..d4e622b 100644 --- a/bonus-modules/bonus-smart-canteen/src/main/resources/mapper/android/UserMapper.xml +++ b/bonus-modules/bonus-smart-canteen/src/main/resources/mapper/android/UserMapper.xml @@ -15,8 +15,8 @@ PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN" su.login_type as loginType from sys_user su left join account_card ac on ac.user_id = su.user_id - left join account_info ai on ai.user_id = su.user_id and ai.del_flag = '0' - where su.status = '0' + left join account_info ai on ai.user_id = su.user_id + where su.status = '0' and ai.del_flag = '0' AND su.user_id = #{userId}