|
|
@ -20,6 +20,9 @@
|
|
|
|
<if test="userName != null and '' != userName">
|
|
|
|
<if test="userName != null and '' != userName">
|
|
|
|
AND userName LIKE CONCAT('%', #{userName}, '%')
|
|
|
|
AND userName LIKE CONCAT('%', #{userName}, '%')
|
|
|
|
</if>
|
|
|
|
</if>
|
|
|
|
|
|
|
|
<if test="employeeName != null and '' != employeeName">
|
|
|
|
|
|
|
|
AND employeeName LIKE CONCAT('%', #{employeeName}, '%')
|
|
|
|
|
|
|
|
</if>
|
|
|
|
<if test="neUserName != null and '' != neUserName">
|
|
|
|
<if test="neUserName != null and '' != neUserName">
|
|
|
|
AND userName != #{neUserName}
|
|
|
|
AND userName != #{neUserName}
|
|
|
|
</if>
|
|
|
|
</if>
|
|
|
@ -108,9 +111,9 @@
|
|
|
|
<insert id="replaceAuthAdmin" keyProperty="id" parameterType="com.glxp.api.entity.auth.AuthAdmin">
|
|
|
|
<insert id="replaceAuthAdmin" keyProperty="id" parameterType="com.glxp.api.entity.auth.AuthAdmin">
|
|
|
|
replace
|
|
|
|
replace
|
|
|
|
INTO auth_user(id, userName, passWord, lastLoginIp,
|
|
|
|
INTO auth_user(id, userName, passWord, lastLoginIp,
|
|
|
|
lastLoginTime, createTime, userFlag, lastModifyTime, employeeName,CustomerId,locDeptCode,locInvCode,comments)
|
|
|
|
lastLoginTime, createTime, userFlag, lastModifyTime, employeeName, CustomerId,
|
|
|
|
values (
|
|
|
|
locDeptCode, locInvCode, comments)
|
|
|
|
#{id},
|
|
|
|
values (#{id},
|
|
|
|
#{userName},
|
|
|
|
#{userName},
|
|
|
|
#{passWord},
|
|
|
|
#{passWord},
|
|
|
|
#{lastLoginIp},
|
|
|
|
#{lastLoginIp},
|
|
|
@ -122,8 +125,7 @@
|
|
|
|
#{CustomerId},
|
|
|
|
#{CustomerId},
|
|
|
|
#{locDeptCode},
|
|
|
|
#{locDeptCode},
|
|
|
|
#{locInvCode},
|
|
|
|
#{locInvCode},
|
|
|
|
#{comments}
|
|
|
|
#{comments})
|
|
|
|
)
|
|
|
|
|
|
|
|
</insert>
|
|
|
|
</insert>
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
@ -178,14 +180,14 @@
|
|
|
|
|
|
|
|
|
|
|
|
<select id="selectNotSelectUser" resultType="com.glxp.api.entity.auth.AuthAdmin">
|
|
|
|
<select id="selectNotSelectUser" resultType="com.glxp.api.entity.auth.AuthAdmin">
|
|
|
|
select *
|
|
|
|
select *
|
|
|
|
from auth_user left join auth_dept_user on auth_user.id=auth_dept_user.userId
|
|
|
|
from auth_user
|
|
|
|
|
|
|
|
left join auth_dept_user on auth_user.id = auth_dept_user.userId
|
|
|
|
<where>
|
|
|
|
<where>
|
|
|
|
userFlag != 0
|
|
|
|
userFlag != 0
|
|
|
|
<if test="deptId != null and '' != deptId">
|
|
|
|
<if test="deptId != null and '' != deptId">
|
|
|
|
AND auth_dept_user.deptId = #{deptId}
|
|
|
|
AND auth_dept_user.deptId = #{deptId}
|
|
|
|
</if>
|
|
|
|
</if>
|
|
|
|
<if test="userIds != null and userIds.size() != 0">
|
|
|
|
<if test="userIds != null and userIds.size() != 0">
|
|
|
|
|
|
|
|
|
|
|
|
and auth_user.id not in
|
|
|
|
and auth_user.id not in
|
|
|
|
|
|
|
|
|
|
|
|
<foreach collection="userIds" item="item" open="(" separator="," close=")">
|
|
|
|
<foreach collection="userIds" item="item" open="(" separator="," close=")">
|
|
|
|