189 lines
5.0 KiB
XML
189 lines
5.0 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="com.jeeplus.modules.sys.dao.AreaDao">
|
|
|
|
<sql id="areaColumns">
|
|
a.id,
|
|
a.parent_id AS "parent.id",
|
|
a.parent_ids,
|
|
a.code,
|
|
a.name,
|
|
a.sort,
|
|
a.type,
|
|
a.remarks,
|
|
a.create_by AS "createBy.id",
|
|
a.create_date,
|
|
a.update_by AS "updateBy.id",
|
|
a.update_date,
|
|
a.del_flag,
|
|
p.name AS "parent.name"
|
|
</sql>
|
|
|
|
<sql id="areaJoins">
|
|
LEFT JOIN sys_office o ON o.id = a.parent_id
|
|
LEFT JOIN sys_area p ON p.id = a.parent_id
|
|
</sql>
|
|
|
|
<select id="get" resultType="Area">
|
|
SELECT
|
|
<include refid="areaColumns"/>
|
|
FROM sys_area a
|
|
<include refid="areaJoins"/>
|
|
WHERE a.id = #{id}
|
|
</select>
|
|
|
|
<select id="findList" resultType="Area">
|
|
SELECT
|
|
<include refid="areaColumns"/>
|
|
FROM sys_area a
|
|
<include refid="areaJoins"/>
|
|
WHERE a.del_flag = #{DEL_FLAG_NORMAL}
|
|
<if test="code != null and code != ''">
|
|
AND a.code = #{code} and a.code !=null
|
|
</if>
|
|
<if test="name != null and name != ''">
|
|
AND a.name like
|
|
<if test="dbName == 'oracle'">'%'||#{name}||'%'</if>
|
|
<if test="dbName == 'mssql'">'%'+#{name}+'%'</if>
|
|
<if test="dbName == 'mysql'">concat('%',#{name},'%')</if>
|
|
</if>
|
|
<if test="parentIds != null and parentIds != ''">
|
|
AND a.parent_ids like
|
|
<if test="dbName == 'oracle'">'%'||#{parentIds}||'%'</if>
|
|
<if test="dbName == 'mssql'">'%'+#{parentIds}+'%'</if>
|
|
<if test="dbName == 'mysql'">concat('%',#{parentIds},'%')</if>
|
|
</if>
|
|
<if test="type != null and type != ''">
|
|
AND a.type = #{type}
|
|
</if>
|
|
<!-- 数据范围过滤 -->
|
|
${sqlMap.dsf}
|
|
OR a.id = #{currentUser.office.area.id}
|
|
ORDER BY a.type,a.code
|
|
</select>
|
|
|
|
<select id="findAllList" resultType="Area">
|
|
SELECT
|
|
<include refid="areaColumns"/>
|
|
FROM sys_area a
|
|
<include refid="areaJoins"/>
|
|
WHERE a.del_flag = #{DEL_FLAG_NORMAL}
|
|
ORDER BY a.code
|
|
</select>
|
|
|
|
<select id="findByParentIdsLike" resultType="Area">
|
|
SELECT
|
|
a.id,
|
|
a.parent_id AS "parent.id",
|
|
a.parent_ids
|
|
FROM sys_area a
|
|
WHERE a.del_flag = #{DEL_FLAG_NORMAL} AND a.parent_ids LIKE #{parentIds}
|
|
ORDER BY a.code
|
|
</select>
|
|
<select id="getUnderAreaList" resultType="Area">
|
|
SELECT
|
|
<include refid="areaColumns"/>
|
|
FROM sys_area a
|
|
<include refid="areaJoins"/>
|
|
WHERE a.del_flag = #{DEL_FLAG_NORMAL}
|
|
<if test="parent != null and parent.id != null and parent.id != ''">
|
|
AND a.parent_id = #{parent.id}
|
|
</if>
|
|
<!-- 查询树结构的层数 -->
|
|
<if test="layer != null and layer != ''">
|
|
AND length(a.parent_ids)-length(replace(a.parent_ids,',','')) <= ${layer}
|
|
</if>
|
|
|
|
<if test="name != null and name != ''">
|
|
AND a.name like
|
|
<if test="dbName == 'oracle'">'%'||#{name}||'%'</if>
|
|
<if test="dbName == 'mssql'">'%'+#{name}+'%'</if>
|
|
<if test="dbName == 'mysql'">concat('%',#{name},'%')</if>
|
|
</if>
|
|
<if test="id != null and id != ''">
|
|
AND (a.parent_ids LIKE
|
|
<if test="dbName == 'oracle'">'%'||#{id}||'%'</if>
|
|
<if test="dbName == 'mssql'">'%'+#{id}+'%'</if>
|
|
<if test="dbName == 'mysql'">concat('%',#{id},'%')</if>
|
|
OR a.id = #{id})
|
|
<if test="type != null and type != ''">
|
|
AND a.type = #{type}
|
|
</if>
|
|
|
|
</if>
|
|
<if test="dbName == 'oracle'"> START WITH a.parent_id = '0' CONNECT BY PRIOR a.id = a.parent_id ORDER siblings BY a.sort</if>
|
|
|
|
</select>
|
|
|
|
<insert id="insert" useGeneratedKeys="true" keyProperty="id" parameterType="Area">
|
|
INSERT INTO sys_area(
|
|
id,
|
|
parent_id,
|
|
parent_ids,
|
|
code,
|
|
name,
|
|
sort,
|
|
type,
|
|
create_by,
|
|
create_date,
|
|
update_by,
|
|
update_date,
|
|
remarks,
|
|
del_flag
|
|
) VALUES (
|
|
#{id},
|
|
#{parent.id},
|
|
#{parentIds},
|
|
#{code},
|
|
#{name},
|
|
#{sort},
|
|
#{type},
|
|
#{createBy.id},
|
|
#{createDate},
|
|
#{updateBy.id},
|
|
#{updateDate},
|
|
#{remarks},
|
|
#{delFlag}
|
|
)
|
|
<!-- oracle数据库用法 <selectKey keyProperty="grid.id" order="AFTER" resultType="java.lang.String"> -->
|
|
<!-- select SQL_HW_MAIN.CURRVAL as id from dual -->
|
|
<!-- </selectKey> -->
|
|
</insert>
|
|
|
|
<update id="update">
|
|
UPDATE sys_area SET
|
|
parent_id = #{parent.id},
|
|
parent_ids = #{parentIds},
|
|
code = #{code},
|
|
name = #{name},
|
|
sort = #{sort},
|
|
type = #{type},
|
|
update_by = #{updateBy.id},
|
|
update_date = #{updateDate},
|
|
remarks = #{remarks}
|
|
WHERE id = #{id}
|
|
</update>
|
|
|
|
<update id="updateParentIds">
|
|
UPDATE sys_area SET
|
|
parent_id = #{parent.id},
|
|
parent_ids = #{parentIds}
|
|
WHERE id = #{id}
|
|
</update>
|
|
|
|
<update id="delete">
|
|
DELETE FROM sys_area
|
|
WHERE id = #{id} OR parent_ids LIKE
|
|
<if test="dbName == 'oracle'">'%,'||#{id}||',%'</if>
|
|
<if test="dbName == 'mysql'">CONCAT('%,', #{id}, ',%')</if>
|
|
</update>
|
|
|
|
<update id="deleteByLogic">
|
|
UPDATE sys_area SET
|
|
del_flag = #{DEL_FLAG_DELETE}
|
|
WHERE id = #{id} OR parent_ids LIKE
|
|
<if test="dbName == 'oracle'">'%,'||#{id}||',%'</if>
|
|
<if test="dbName == 'mysql'">CONCAT('%,', #{id}, ',%')</if>
|
|
</update>
|
|
|
|
</mapper> |