|
@@ -125,29 +125,29 @@ PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN"
|
|
|
|
|
|
<select id="selectUserByLoginName" parameterType="String" resultMap="SysUserResult">
|
|
|
<include refid="selectUserVo"/>
|
|
|
- where u.login_name = #{userName}
|
|
|
+ where u.login_name = #{userName} and u.del_flag = '0'
|
|
|
</select>
|
|
|
|
|
|
<select id="selectUserByPhoneNumber" parameterType="String" resultMap="SysUserResult">
|
|
|
<include refid="selectUserVo"/>
|
|
|
- where u.phonenumber = #{phonenumber}
|
|
|
+ where u.phonenumber = #{phonenumber} and u.del_flag = '0'
|
|
|
</select>
|
|
|
|
|
|
<select id="selectUserByEmail" parameterType="String" resultMap="SysUserResult">
|
|
|
<include refid="selectUserVo"/>
|
|
|
- where u.email = #{email}
|
|
|
+ where u.email = #{email} and u.del_flag = '0'
|
|
|
</select>
|
|
|
|
|
|
<select id="checkLoginNameUnique" parameterType="String" resultType="int">
|
|
|
- select count(1) from sys_user where login_name=#{loginName} limit 1
|
|
|
+ select count(1) from sys_user where login_name=#{loginName} and del_flag = '0' limit 1
|
|
|
</select>
|
|
|
|
|
|
<select id="checkPhoneUnique" parameterType="String" resultMap="SysUserResult">
|
|
|
- select user_id, phonenumber from sys_user where phonenumber=#{phonenumber} limit 1
|
|
|
+ select user_id, phonenumber from sys_user where phonenumber=#{phonenumber} and del_flag = '0' limit 1
|
|
|
</select>
|
|
|
|
|
|
<select id="checkEmailUnique" parameterType="String" resultMap="SysUserResult">
|
|
|
- select user_id, email from sys_user where email=#{email} limit 1
|
|
|
+ select user_id, email from sys_user where email=#{email} and del_flag = '0' limit 1
|
|
|
</select>
|
|
|
|
|
|
<select id="selectUserById" parameterType="Long" resultMap="SysUserResult">
|