|
@@ -196,6 +196,7 @@ PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN"
|
|
|
<if test="sex != null and sex != ''">sex = #{sex},</if>
|
|
|
<if test="avatar != null and avatar != ''">avatar = #{avatar},</if>
|
|
|
<if test="status != null and status != ''">status = #{status},</if>
|
|
|
+ <if test="password != null and password != ''">password = #{password},</if>
|
|
|
<if test="loginIp != null and loginIp != ''">login_ip = #{loginIp},</if>
|
|
|
<if test="loginDate != null">login_date = #{loginDate},</if>
|
|
|
<if test="updateBy != null and updateBy != ''">update_by = #{updateBy},</if>
|
|
@@ -271,5 +272,43 @@ PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN"
|
|
|
AND del_flag = 1
|
|
|
AND status = 1
|
|
|
</select>
|
|
|
-
|
|
|
+ <select id="selectUserLists" resultMap="SysUserResult" parameterType="com.ozs.common.core.domain.vo.SysUserVo">
|
|
|
+ select u.id,u.user_id, u.dept_id, u.user_name, u.nick_name, u.email, u.avatar, u.phone_num, u.password, u.sex, u.status, u.del_flag, u.login_ip, u.login_date, u.create_by, u.create_time, u.remark
|
|
|
+ from sys_user u
|
|
|
+ <where>
|
|
|
+ <if test="userName != null and userName != ''">
|
|
|
+ and u.user_name like concat('%', #{userName}, '%')
|
|
|
+ </if>
|
|
|
+ <if test="nickName != null and nickName != ''">
|
|
|
+ and u.nick_name like concat('%', #{nickName}, '%')
|
|
|
+ </if>
|
|
|
+ <if test="phoneNum != null and phoneNum != ''">
|
|
|
+ and u.phone_num like concat('%', #{phoneNum}, '%')
|
|
|
+ </if>
|
|
|
+ <if test="deptId != null and deptId != 0">
|
|
|
+ and u.dept_id=#{deptId}
|
|
|
+ </if>
|
|
|
+ <if test="status != null and status != 0">
|
|
|
+ and u.status=#{status}
|
|
|
+ </if>
|
|
|
+ <if test="!dsFlay">
|
|
|
+ and (
|
|
|
+ <if test="dsUserId != null and dsUserId != ''">
|
|
|
+ u.create_by=#{dsUserId} or
|
|
|
+ </if>
|
|
|
+ <if test="dsDeptId != null and dsDeptId != 0">
|
|
|
+ u.dept_id=#{dsDeptId} or
|
|
|
+ </if>
|
|
|
+ <if test="dsDeptIds != null">
|
|
|
+ u.dept_id in
|
|
|
+ <foreach item="item" collection="dsDeptIds" separator="," open="(" close=")" index="">
|
|
|
+ #{item}
|
|
|
+ </foreach>
|
|
|
+ </if>
|
|
|
+ )
|
|
|
+ </if>
|
|
|
+ and u.del_flag = '1'
|
|
|
+ </where>
|
|
|
+ </select>
|
|
|
+
|
|
|
</mapper>
|