소스 검색

'解决平台PC端登录页登录时有重复登录账户报错的问题'

james 2 년 전
부모
커밋
432894b7ef
1개의 변경된 파일1개의 추가작업 그리고 1개의 파일을 삭제
  1. 1 1
      base-modules/service-system/service-system-biz/src/main/resources/mapper/system/SysUserMapper.xml

+ 1 - 1
base-modules/service-system/service-system-biz/src/main/resources/mapper/system/SysUserMapper.xml

@@ -138,7 +138,7 @@ PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN"
 
 	<select id="selectUserByUserNameOne" resultMap="SysUserResult">
 		<include refid="selectUserVo"/>
-		where u.user_name = #{userName} and u.tenant_id = #{tenantId}
+		where u.del_flag=0 and u.status=0 and u.user_name = #{userName} and u.tenant_id = #{tenantId}
 	</select>
 	
 	<select id="selectUserById" parameterType="Long" resultMap="SysUserResult">