60 lines
2.3 KiB
XML
60 lines
2.3 KiB
XML
|
<?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="cn.bunny.services.mapper.DeptMapper">
|
||
|
|
||
|
<!-- 通用查询映射结果 -->
|
||
|
<resultMap id="BaseResultMap" type="cn.bunny.dao.entity.system.Dept">
|
||
|
<id column="id" property="id"/>
|
||
|
<id column="create_time" property="createTime"/>
|
||
|
<id column="update_time" property="updateTime"/>
|
||
|
<id column="create_user" property="createUser"/>
|
||
|
<id column="update_user" property="updateUser"/>
|
||
|
<id column="is_deleted" property="isDeleted"/>
|
||
|
<id column="parent_id" property="parentId"/>
|
||
|
<id column="manager_id" property="managerId"/>
|
||
|
<id column="dept_name" property="deptName"/>
|
||
|
<id column="summary" property="summary"/>
|
||
|
<id column="remarks" property="remarks"/>
|
||
|
</resultMap>
|
||
|
|
||
|
<!-- 通用查询结果列 -->
|
||
|
<sql id="Base_Column_List">
|
||
|
id, create_time, update_time, create_user, update_user, is_deleted, parent_id, manager_id, dept_name, summary, remarks
|
||
|
</sql>
|
||
|
|
||
|
<!-- 分页查询部门内容 -->
|
||
|
<select id="selectListByPage" resultType="cn.bunny.dao.entity.system.Dept">
|
||
|
select <include refid="Base_Column_List"/>
|
||
|
from sys_dept
|
||
|
<where>
|
||
|
<if test="dto.parentId != null and dto.parentId != ''">
|
||
|
parent_id like CONCAT('%',#{dto.parentId},'%')
|
||
|
</if>
|
||
|
<if test="dto.managerId != null and dto.managerId != ''">
|
||
|
manager_id like CONCAT('%',#{dto.managerId},'%')
|
||
|
</if>
|
||
|
<if test="dto.deptName != null and dto.deptName != ''">
|
||
|
dept_name like CONCAT('%',#{dto.deptName},'%')
|
||
|
</if>
|
||
|
<if test="dto.summary != null and dto.summary != ''">
|
||
|
summary like CONCAT('%',#{dto.summary},'%')
|
||
|
</if>
|
||
|
<if test="dto.remarks != null and dto.remarks != ''">
|
||
|
remarks like CONCAT('%',#{dto.remarks},'%')
|
||
|
</if>
|
||
|
</where>
|
||
|
order by update_time
|
||
|
</select>
|
||
|
|
||
|
<!-- 物理删除部门 -->
|
||
|
<delete id="deleteBatchIdsWithPhysics">
|
||
|
delete
|
||
|
from sys_dept
|
||
|
where id in
|
||
|
<foreach collection="ids" item="id" open="(" close=")" separator=",">
|
||
|
#{id}
|
||
|
</foreach>
|
||
|
</delete>
|
||
|
|
||
|
</mapper>
|