wg-basic/service-department/src/main/resources/mybatis/mapper/department-user-mapper.xml

354 lines
12 KiB
XML
Raw Normal View History

2021-01-29 15:02:37 +08:00
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE mapper PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN" "http://mybatis.org/dtd/mybatis-3-mapper.dtd">
2021-02-14 22:09:36 +08:00
<mapper namespace="ink.wgink.service.department.dao.IDepartmentUserDao">
2021-01-29 15:02:37 +08:00
<cache flushInterval="3600000"/>
2022-05-16 18:49:12 +08:00
<resultMap id="departmentUserDTO" type="ink.wgink.pojo.dtos.department.DepartmentUserDTO">
2021-06-12 13:53:11 +08:00
<result column="department_id" property="departmentId"/>
<result column="user_id" property="userId"/>
<result column="user_sort" property="userSort"/>
2022-05-16 18:49:12 +08:00
<result column="user_username" property="userUsername"/>
<result column="user_name" property="userName"/>
<result column="user_phone" property="userPhone"/>
<result column="user_email" property="userEmail"/>
<result column="user_avatar" property="userAvatar"/>
<result column="user_type" property="userType"/>
<result column="user_state" property="userState"/>
2021-06-12 13:53:11 +08:00
</resultMap>
2021-02-14 22:09:36 +08:00
<!-- 建表 -->
<update id="createTable">
CREATE TABLE IF NOT EXISTS `sys_department_user` (
`id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
`department_id` char(36) NOT NULL,
`user_id` char(36) NOT NULL,
`user_sort` varchar(255) DEFAULT 'ZZZ-000',
PRIMARY KEY (`id`),
KEY `user_id_idx` (`user_id`) USING BTREE,
KEY `department_id_idx` (`department_id`) USING BTREE
2021-02-16 12:35:13 +08:00
) ENGINE=InnoDB DEFAULT CHARSET=utf8;
2021-02-14 22:09:36 +08:00
</update>
2021-01-29 15:02:37 +08:00
<!-- 新增组织用户 -->
<insert id="save" parameterType="map" flushCache="true">
INSERT INTO sys_department_user(
department_id,
user_id
) VALUES(
#{departmentId},
#{userId}
)
</insert>
<!-- 删除组织用户 -->
<delete id="delete" parameterType="map" flushCache="true">
DELETE FROM
sys_department_user
2021-06-10 17:01:16 +08:00
<where>
<if test="departmentId != null and departmentId != ''">
2021-01-29 15:02:37 +08:00
AND
department_id = #{departmentId}
2021-06-10 17:01:16 +08:00
</if>
<if test="departmentIds != null and departmentIds.size > 0">
2021-01-29 15:02:37 +08:00
AND
department_id IN
2021-06-10 17:01:16 +08:00
<foreach collection="departmentIds" index="index" open="(" separator="," close=")">
2021-01-29 15:02:37 +08:00
#{departmentIds[${index}]}
2021-06-10 17:01:16 +08:00
</foreach>
</if>
<if test="userId != null and userId != ''">
2021-01-29 15:02:37 +08:00
AND
user_id = #{userId}
2021-06-10 17:01:16 +08:00
</if>
<if test="userIds != null and userIds.size > 0">
2021-01-29 15:02:37 +08:00
AND
user_id IN
2021-06-10 17:01:16 +08:00
<foreach collection="userIds" index="index" open="(" separator="," close=")">
2021-01-29 15:02:37 +08:00
#{userIds[${index}]}
2021-06-10 17:01:16 +08:00
</foreach>
</if>
</where>
2021-01-29 15:02:37 +08:00
</delete>
2021-06-10 17:01:16 +08:00
<!-- 更新组织用户排序 -->
<update id="updateSort" parameterType="map" flushCache="true">
UPDATE
sys_department_user
SET
user_sort = #{userSort}
WHERE
department_id = #{departmentId}
AND
2021-06-12 13:53:11 +08:00
user_id = #{userId}
2021-06-10 17:01:16 +08:00
</update>
2021-06-12 13:53:11 +08:00
<!-- 机构用户列表 -->
<select id="list" parameterType="map" resultMap="departmentUserDTO" useCache="true">
SELECT
department_id,
user_id,
user_sort
FROM
sys_department_user
<where>
<if test="departmentId != null and departmentId != ''">
department_id = #{departmentId}
</if>
<if test="departmentIds != null and departmentIds.size > 0">
AND
department_id IN
<foreach collection="departmentIds" index="index" open="(" separator="," close=")">
#{departmentIds[${index}]}
</foreach>
</if>
<if test="userIds != null and userIds.size > 0">
AND
user_id IN
<foreach collection="userIds" index="index" open="(" separator="," close=")">
#{userIds[${index}]}
</foreach>
</if>
</where>
2021-11-01 11:26:17 +08:00
<if test="order != null and order != ''">
2021-06-12 13:53:11 +08:00
ORDER BY
2021-11-01 11:26:17 +08:00
<trim suffixOverrides=",">
<if test="order == 'userSort'">
user_sort <if test="sort != null and sort != ''"><if test="sort == 'asc'">ASC</if><if test="sort == 'desc'">DESC</if></if>,
</if>
</trim>
<trim suffixOverrides=",">
<if test="order == 'userSort'">
user_sort <if test="sort != null and sort != ''"><if test="sort == 'asc'">ASC</if><if test="sort == 'desc'">DESC</if></if>,
</if>
</trim>
</if>
2021-06-12 13:53:11 +08:00
</select>
2021-01-29 15:02:37 +08:00
<!-- 用户ID列表 -->
<select id="listUserId" parameterType="map" resultType="java.lang.String" useCache="true">
2021-01-29 15:02:37 +08:00
SELECT
user_id
FROM
sys_department_user
2021-06-10 17:01:16 +08:00
<where>
<if test="departmentId != null and departmentId != ''">
2021-02-05 16:52:19 +08:00
department_id = #{departmentId}
2021-06-10 17:01:16 +08:00
</if>
<if test="departmentIds != null and departmentIds.size > 0">
AND
2021-06-12 13:53:11 +08:00
department_id IN
2021-06-10 17:01:16 +08:00
<foreach collection="departmentIds" index="index" open="(" separator="," close=")">
#{departmentIds[${index}]}
</foreach>
</if>
<if test="userIds != null and userIds.size > 0">
AND
2021-06-12 13:53:11 +08:00
user_id IN
2021-06-10 17:01:16 +08:00
<foreach collection="userIds" index="index" open="(" separator="," close=")">
#{userIds[${index}]}
</foreach>
</if>
</where>
GROUP BY
user_id, user_sort
2021-06-10 17:01:16 +08:00
ORDER BY
user_sort
2021-01-29 15:02:37 +08:00
</select>
2021-02-14 22:09:36 +08:00
<!-- 用户ID列表 -->
<select id="listGroupUserId" parameterType="map" resultType="java.lang.String">
SELECT
user_id
FROM
sys_department_user
WHERE
1 = 1
GROUP BY
user_id
</select>
2021-02-25 23:23:47 +08:00
<!-- 部门ID列表 -->
<select id="listDepartmentId" parameterType="map" resultType="java.lang.String" useCache="true">
2021-02-25 23:23:47 +08:00
SELECT
department_id
FROM
sys_department_user
2022-04-08 18:17:14 +08:00
<where>
2021-02-25 23:23:47 +08:00
<if test="userId != null and userId != ''">
user_id = #{userId}
</if>
<if test="userIds != null and userIds.size > 0">
2022-04-08 18:17:14 +08:00
AND
2021-02-25 23:23:47 +08:00
user_id IN (
<foreach collection="userIds" index="index" open="(" separator="," close=")">
#{userIds[${index}]}
</foreach>
)
</if>
2022-04-08 18:17:14 +08:00
</where>
2021-02-25 23:23:47 +08:00
</select>
<!-- 用户列表 -->
<select id="listUser" parameterType="map" resultMap="ink.wgink.service.user.dao.IUserDao.userDTO" useCache="false">
SELECT
user_id,
user_username,
user_name,
user_phone,
user_email,
user_type,
user_state
FROM
sys_user t1
WHERE
t1.is_delete = 0
AND
t1.user_username != 'admin'
<if test="keywords != null and keywords != ''">
AND (
user_username LIKE CONCAT('%', #{keywords}, '%')
OR
user_name LIKE CONCAT('%', #{keywords}, '%')
OR
user_phone LIKE CONCAT('%', #{keywords}, '%')
OR
user_email LIKE CONCAT('%', #{keywords}, '%')
)
</if>
<if test="userType != null">
AND
t1.user_type = #{userType}
</if>
<if test="userState != null">
AND
t1.user_state = #{userState}
</if>
<if test="excludeUserType != null and excludeUserType != ''">
AND
t1.user_type != #{excludeUserType}
</if>
<if test="departmentId != null and departmentId != ''">
AND
t1.user_id IN (
SELECT
user_id
FROM
sys_department_user st1
WHERE
st1.department_id = #{departmentId}
)
</if>
<if test="departmentIds != null and departmentIds.size > 0">
AND
t1.user_id IN (
SELECT
user_id
FROM
sys_department_user st1
WHERE
st1.department_id IN
<foreach collection="departmentIds" index="index" open="(" separator="," close=")">
#{departmentIds[${index}]}
</foreach>
)
</if>
<if test="excludeDepartmentId != null and excludeDepartmentId != ''">
AND
t1.user_id NOT IN (
SELECT
user_id
FROM
sys_department_user st1
WHERE
st1.department_id = #{excludeDepartmentId}
)
</if>
<if test="excludeDepartmentIds != null and excludeDepartmentIds.size > 0">
AND
t1.user_id NOT IN (
SELECT
user_id
FROM
sys_department_user st1
WHERE
st1.department_id IN
<foreach collection="excludeDepartmentIds" index="index" open="(" separator="," close=")">
#{excludeDepartmentIds[${index}]}
</foreach>
)
</if>
</select>
2022-04-08 18:17:14 +08:00
<!-- 同部门用户ID列表 -->
<select id="listSameDepartmentUserId" parameterType="map" resultType="java.lang.String" useCache="false">
SELECT
t1.user_id
FROM
sys_department_user t1
WHERE
t1.department_id IN (
SELECT
department_id
FROM
sys_department_user st1
<where>
<if test="userId != null and userId != ''">
user_id = #{userId}
</if>
<if test="userIds != null and userIds.size > 0">
AND
user_id IN
<foreach collection="userIds" index="index" open="(" separator="," close=")">
#{userIds[${index}]}
</foreach>
</if>
</where>
)
</select>
2022-05-16 18:49:12 +08:00
<!-- 部门用户列表 -->
<select id="listDepartmentUser" parameterType="map" resultMap="departmentUserDTO" useCache="true">
SELECT
t1.user_id,
t1.user_username,
t1.user_name,
t1.user_phone,
t1.user_email,
t1.user_avatar,
t1.user_type,
t1.user_state,
jt1.department_id,
jt1.user_sort
FROM
sys_user t1
INNER JOIN
sys_department_user jt1
ON
t1.user_id = jt1.user_id
WHERE
t1.is_delete = 0
AND
t1.user_name != 'admin'
<if test="departmentId != null and departmentId != ''">
AND
jt1.department_id = #{departmentId}
</if>
<if test="departmentIds != null and departmentIds.size > 0">
AND
jt1.department_id IN
<foreach collection="departmentIds" index="index" open="(" separator="," close=")">
#{departmentIds[${index}]}
</foreach>
</if>
<choose>
<when test="sort != null and (sort == 'userSort')">
ORDER BY
<if test="sort == 'userSort'">
user_sort ${order}
</if>
</when>
</choose>
</select>
2021-01-29 15:02:37 +08:00
</mapper>