123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136 |
- <?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">
- <mapper namespace="com.qunzhixinxi.hnqz.admin.mapper.SysDeptRelationMapper">
- <!-- 通用查询映射结果 -->
- <resultMap id="BaseResultMap" type="com.qunzhixinxi.hnqz.admin.api.entity.SysDeptRelation">
- <id column="ancestor" property="ancestor"/>
- <result column="descendant" property="descendant"/>
- </resultMap>
- <!-- 通用查询结果列 -->
- <sql id="Base_Column_List">
- ancestor, descendant
- </sql>
- <!-- 更新部门关系 -->
- <update id="updateDeptRelations">
- DELETE FROM sys_dept_relation
- WHERE
- descendant IN ( SELECT temp.descendant FROM
- ( SELECT descendant FROM sys_dept_relation WHERE ancestor = #{descendant} ) temp )
- AND ancestor IN ( SELECT temp.ancestor FROM ( SELECT ancestor FROM
- sys_dept_relation WHERE descendant = #{descendant} AND ancestor != descendant ) temp );
- INSERT INTO sys_dept_relation (ancestor, descendant)
- SELECT a.ancestor, b.descendant
- FROM sys_dept_relation a
- CROSS JOIN sys_dept_relation b
- WHERE a.descendant = #{ancestor}
- AND b.ancestor = #{descendant};
- </update>
- <!--删除部门-->
- <delete id="deleteDeptRelationsById">
- DELETE
- FROM
- sys_dept_relation
- WHERE
- descendant IN (
- SELECT
- temp.descendant
- FROM
- (
- SELECT
- descendant
- FROM
- sys_dept_relation
- WHERE
- ancestor = #{id}
- ) temp
- )
- </delete>
- <!--删除部门-->
- <delete id="deleteDeptById">
- DELETE
- FROM
- sys_dept
- WHERE
- dept_id=#{id}
- </delete>
- <select id="selectDeptRelationsList" resultMap="BaseResultMap">
- SELECT *
- FROM sys_dept_relation
- WHERE ancestor = #{query.ancestor}
- </select>
- <select id="selectDeptAllDesc" resultMap="BaseResultMap">
- SELECT *
- FROM sys_dept_relation
- WHERE ancestor = #{query.ancestor}
- UNION ALL
- SELECT *
- FROM sys_dept_relation
- WHERE ancestor in (
- SELECT descendant
- FROM sys_dept_relation
- WHERE ancestor = #{query.ancestor}
- and
- descendant != ancestor
- )
- </select>
- <select id="selectListByAncestor" resultMap="BaseResultMap">
- SELECT
- *
- FROM
- sys_dept_relation
- WHERE
- ancestor = #{query.ancestor}
- and
- descendant != ancestor
- </select>
- <select id="selectListByDescendant" resultMap="BaseResultMap">
- SELECT
- *
- FROM
- sys_dept_relation
- WHERE
- descendant = #{query.descendant,jdbcType=BIGINT}
- and
- descendant != ancestor
- and
- ancestor != 1
- </select>
- <select id="selectByDescendantList" resultMap="BaseResultMap">
- SELECT
- *
- FROM
- sys_dept_relation
- WHERE
- descendant = #{query.descendant,jdbcType=BIGINT}
- </select>
- <select id="selectDeptRelation" resultMap="BaseResultMap">
- SELECT
- *
- FROM
- sys_dept_relation
- WHERE
- ancestor = #{query.ancestor,jdbcType=BIGINT}
- and
- descendant = #{query.descendant,jdbcType=BIGINT}
- </select>
- <delete id="deleteByPrimaryKey" parameterType="java.lang.Long">
- delete from sys_dept_relation
- where descendant = #{descendant,jdbcType=BIGINT}
- </delete>
- </mapper>
|