123456789101112131415161718192021222324252627282930313233343536373839404142434445464748 |
- <?xml version="1.0" encoding="UTF-8"?>
- <!--
- ~
- ~ Copyright (c) 2018-2025, lengleng All rights reserved.
- ~
- ~ Redistribution and use in source and binary forms, with or without
- ~ modification, are permitted provided that the following conditions are met:
- ~
- ~ Redistributions of source code must retain the above copyright notice,
- ~ this list of conditions and the following disclaimer.
- ~ Redistributions in binary form must reproduce the above copyright
- ~ notice, this list of conditions and the following disclaimer in the
- ~ documentation and/or other materials provided with the distribution.
- ~ Neither the name of the pig4cloud.com developer nor the names of its
- ~ contributors may be used to endorse or promote products derived from
- ~ this software without specific prior written permission.
- ~ Author: lengleng (wangiegie@gmail.com)
- ~
- -->
- <!DOCTYPE mapper PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN" "http://mybatis.org/dtd/mybatis-3-mapper.dtd">
- <mapper namespace="com.pig4cloud.pigx.admin.mapper.SysDeptMapper">
- <!-- 通用查询映射结果 -->
- <resultMap id="BaseResultMap" type="com.pig4cloud.pigx.admin.api.entity.SysDept">
- <id column="dept_id" property="deptId"/>
- <result column="name" property="name"/>
- <result column="sort" property="sort"/>
- <result column="create_time" property="createTime"/>
- <result column="update_time" property="updateTime"/>
- <result column="del_flag" property="delFlag"/>
- </resultMap>
- <!-- 通用查询结果列 -->
- <sql id="Base_Column_List">
- dept_id AS deptId, parent_id AS parentId, name, sort, create_time AS createTime, update_time AS updateTime, del_flag AS delFlag
- </sql>
- <!--关联查询部门列表-->
- <select id="listDepts" resultType="com.pig4cloud.pigx.admin.api.entity.SysDept">
- SELECT
- t.*
- FROM
- sys_dept t
- LEFT JOIN sys_dept_relation dr ON t.dept_id = dr.descendant
- WHERE dr.ancestor = 0
- </select>
- </mapper>
|