|
|
|
@ -22,17 +22,22 @@
|
|
|
|
|
|
|
|
|
|
<select id="selectJoinDeptUser" parameterType="com.glxp.api.req.auth.FilterDeptUserReqeust"
|
|
|
|
|
resultType="com.glxp.api.res.auth.DeptUserResponse">
|
|
|
|
|
SELECT auth_dept_user.*,auth_user.userName,auth_user.employeeName,auth_dept.`name` deptName
|
|
|
|
|
FROM auth_dept_user INNER JOIN auth_user
|
|
|
|
|
on auth_dept_user.userId = auth_user.id
|
|
|
|
|
INNER JOIN auth_dept on auth_dept_user.deptId = auth_dept.id
|
|
|
|
|
SELECT auth_dept_user.*, auth_user.userName, auth_user.employeeName, auth_dept.`name` deptName, auth_user.comments
|
|
|
|
|
FROM auth_dept_user
|
|
|
|
|
INNER JOIN auth_user
|
|
|
|
|
on auth_dept_user.userId = auth_user.id
|
|
|
|
|
INNER JOIN auth_dept on auth_dept_user.deptId = auth_dept.id
|
|
|
|
|
<where>
|
|
|
|
|
<if test="deptId != null ">
|
|
|
|
|
<if test="deptId != null">
|
|
|
|
|
and deptId = #{deptId}
|
|
|
|
|
</if>
|
|
|
|
|
<if test="userId != null ">
|
|
|
|
|
<if test="userId != null">
|
|
|
|
|
and userId = #{userId}
|
|
|
|
|
</if>
|
|
|
|
|
<if test="key != null and key != ''">
|
|
|
|
|
and (auth_user.userName like concat('%', #{key}, '%') or
|
|
|
|
|
auth_user.employeeName like concat('%', #{key}, '%'))
|
|
|
|
|
</if>
|
|
|
|
|
</where>
|
|
|
|
|
</select>
|
|
|
|
|
|
|
|
|
|