|
|
@ -2,10 +2,9 @@
|
|
|
|
<!DOCTYPE mapper PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN" "http://mybatis.org/dtd/mybatis-3-mapper.dtd" >
|
|
|
|
<!DOCTYPE mapper PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN" "http://mybatis.org/dtd/mybatis-3-mapper.dtd" >
|
|
|
|
|
|
|
|
|
|
|
|
<mapper namespace="com.glxp.api.dao.auth.DeptDao">
|
|
|
|
<mapper namespace="com.glxp.api.dao.auth.DeptDao">
|
|
|
|
|
|
|
|
|
|
|
|
<select id="filterInvWarehouse" parameterType="com.glxp.api.req.auth.FilterInvWarehouseRequest"
|
|
|
|
<select id="filterInvWarehouse" parameterType="com.glxp.api.req.auth.FilterInvWarehouseRequest"
|
|
|
|
resultType="com.glxp.api.entity.auth.DeptEntity">
|
|
|
|
resultType="com.glxp.api.entity.auth.DeptEntity">
|
|
|
|
select * ,(select name from auth_dept WHERE a.pcode = code) pName
|
|
|
|
select *, (select name from auth_dept WHERE a.pcode = code) pName
|
|
|
|
FROM auth_dept a
|
|
|
|
FROM auth_dept a
|
|
|
|
<where>
|
|
|
|
<where>
|
|
|
|
<if test="id != '' and id != null">
|
|
|
|
<if test="id != '' and id != null">
|
|
|
@ -18,7 +17,7 @@
|
|
|
|
AND a.code = #{code}
|
|
|
|
AND a.code = #{code}
|
|
|
|
</if>
|
|
|
|
</if>
|
|
|
|
<if test="name != '' and name != null">
|
|
|
|
<if test="name != '' and name != null">
|
|
|
|
AND a.name like concat('%',#{name},'%')
|
|
|
|
AND a.name like concat('%', #{name}, '%')
|
|
|
|
</if>
|
|
|
|
</if>
|
|
|
|
<if test="advanceType != null">
|
|
|
|
<if test="advanceType != null">
|
|
|
|
AND a.advanceType = #{advanceType}
|
|
|
|
AND a.advanceType = #{advanceType}
|
|
|
@ -38,15 +37,14 @@
|
|
|
|
<if test="spUse != null">
|
|
|
|
<if test="spUse != null">
|
|
|
|
AND a.spUse = #{spUse}
|
|
|
|
AND a.spUse = #{spUse}
|
|
|
|
</if>
|
|
|
|
</if>
|
|
|
|
|
|
|
|
|
|
|
|
</where>
|
|
|
|
</where>
|
|
|
|
|
|
|
|
|
|
|
|
</select>
|
|
|
|
</select>
|
|
|
|
|
|
|
|
|
|
|
|
<select id="filterAllByUser" parameterType="com.glxp.api.req.auth.FilterInvWarehouseRequest"
|
|
|
|
<select id="filterAllByUser" parameterType="com.glxp.api.req.auth.FilterInvWarehouseRequest"
|
|
|
|
resultType="com.glxp.api.entity.auth.DeptEntity">
|
|
|
|
resultType="com.glxp.api.entity.auth.DeptEntity">
|
|
|
|
select auth_dept.* from auth_dept INNER JOIN auth_warehouse
|
|
|
|
select auth_dept.* from auth_dept
|
|
|
|
on auth_dept.`code` =auth_warehouse.parentId
|
|
|
|
INNER JOIN auth_warehouse
|
|
|
|
|
|
|
|
on auth_dept.`code` = auth_warehouse.parentId
|
|
|
|
<if test="CustomerId != '' and CustomerId != null">
|
|
|
|
<if test="CustomerId != '' and CustomerId != null">
|
|
|
|
INNER JOIN auth_warehouse_user on auth_warehouse_user.`code` = auth_warehouse.code
|
|
|
|
INNER JOIN auth_warehouse_user on auth_warehouse_user.`code` = auth_warehouse.code
|
|
|
|
</if>
|
|
|
|
</if>
|
|
|
@ -63,7 +61,7 @@
|
|
|
|
<if test="name != '' and name != null">
|
|
|
|
<if test="name != '' and name != null">
|
|
|
|
AND name = #{name}
|
|
|
|
AND name = #{name}
|
|
|
|
</if>
|
|
|
|
</if>
|
|
|
|
<if test=" advanceType != null">
|
|
|
|
<if test="advanceType != null">
|
|
|
|
AND advanceType = #{advanceType}
|
|
|
|
AND advanceType = #{advanceType}
|
|
|
|
</if>
|
|
|
|
</if>
|
|
|
|
<if test="isDefault != null">
|
|
|
|
<if test="isDefault != null">
|
|
|
@ -84,7 +82,6 @@
|
|
|
|
</if>
|
|
|
|
</if>
|
|
|
|
</where>
|
|
|
|
</where>
|
|
|
|
group by auth_dept.code
|
|
|
|
group by auth_dept.code
|
|
|
|
|
|
|
|
|
|
|
|
</select>
|
|
|
|
</select>
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
@ -93,7 +90,6 @@
|
|
|
|
SELECT *
|
|
|
|
SELECT *
|
|
|
|
FROM auth_dept
|
|
|
|
FROM auth_dept
|
|
|
|
WHERE id = #{id}
|
|
|
|
WHERE id = #{id}
|
|
|
|
|
|
|
|
|
|
|
|
</select>
|
|
|
|
</select>
|
|
|
|
|
|
|
|
|
|
|
|
<select id="selectByIdCode"
|
|
|
|
<select id="selectByIdCode"
|
|
|
@ -108,12 +104,12 @@
|
|
|
|
</foreach>
|
|
|
|
</foreach>
|
|
|
|
</if>
|
|
|
|
</if>
|
|
|
|
</where>
|
|
|
|
</where>
|
|
|
|
|
|
|
|
|
|
|
|
</select>
|
|
|
|
</select>
|
|
|
|
|
|
|
|
|
|
|
|
<select id="selectMaxCode" parameterType="com.glxp.api.req.auth.FilterInvWarehouseRequest"
|
|
|
|
<select id="selectMaxCode" parameterType="com.glxp.api.req.auth.FilterInvWarehouseRequest"
|
|
|
|
resultType="com.glxp.api.entity.auth.DeptEntity">
|
|
|
|
resultType="com.glxp.api.entity.auth.DeptEntity">
|
|
|
|
select max(code) as code from auth_dept
|
|
|
|
select max(code) as code
|
|
|
|
|
|
|
|
from auth_dept
|
|
|
|
<where>
|
|
|
|
<where>
|
|
|
|
<if test="id != '' and id != null">
|
|
|
|
<if test="id != '' and id != null">
|
|
|
|
AND id = #{id}
|
|
|
|
AND id = #{id}
|
|
|
@ -127,7 +123,7 @@
|
|
|
|
<if test="name != '' and name != null">
|
|
|
|
<if test="name != '' and name != null">
|
|
|
|
AND name = #{name}
|
|
|
|
AND name = #{name}
|
|
|
|
</if>
|
|
|
|
</if>
|
|
|
|
<if test=" advanceType != null">
|
|
|
|
<if test="advanceType != null">
|
|
|
|
AND advanceType = #{advanceType}
|
|
|
|
AND advanceType = #{advanceType}
|
|
|
|
</if>
|
|
|
|
</if>
|
|
|
|
<if test="isDefault != null">
|
|
|
|
<if test="isDefault != null">
|
|
|
@ -140,13 +136,13 @@
|
|
|
|
AND `level` = #{level}
|
|
|
|
AND `level` = #{level}
|
|
|
|
</if>
|
|
|
|
</if>
|
|
|
|
</where>
|
|
|
|
</where>
|
|
|
|
|
|
|
|
|
|
|
|
</select>
|
|
|
|
</select>
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
<select id="filterGroupInvWarehouse" parameterType="com.glxp.api.req.auth.FilterInvWarehouseRequest"
|
|
|
|
<select id="filterGroupInvWarehouse" parameterType="com.glxp.api.req.auth.FilterInvWarehouseRequest"
|
|
|
|
resultType="com.glxp.api.entity.auth.DeptEntity">
|
|
|
|
resultType="com.glxp.api.entity.auth.DeptEntity">
|
|
|
|
SELECT * FROM auth_dept
|
|
|
|
SELECT *
|
|
|
|
|
|
|
|
FROM auth_dept
|
|
|
|
<where>
|
|
|
|
<where>
|
|
|
|
<if test="id != '' and id != null">
|
|
|
|
<if test="id != '' and id != null">
|
|
|
|
AND id = #{id}
|
|
|
|
AND id = #{id}
|
|
|
@ -175,14 +171,17 @@
|
|
|
|
<if test="spUse != null">
|
|
|
|
<if test="spUse != null">
|
|
|
|
AND spUse = #{spUse}
|
|
|
|
AND spUse = #{spUse}
|
|
|
|
</if>
|
|
|
|
</if>
|
|
|
|
<if test="updateTime!=null and updateTime!=''">
|
|
|
|
<if test="updateTime != null and updateTime != ''">
|
|
|
|
<![CDATA[ and DATE_FORMAT(updateTime, '%Y-%m-%d %H:%i:%S')>= DATE_FORMAT(#{updateTime}, '%Y-%m-%d %H:%i:%S') ]]>
|
|
|
|
<![CDATA[
|
|
|
|
|
|
|
|
and DATE_FORMAT(updateTime, '%Y-%m-%d %H:%i:%S') >= DATE_FORMAT(#{updateTime}, '%Y-%m-%d %H:%i:%S')
|
|
|
|
|
|
|
|
]]>
|
|
|
|
</if>
|
|
|
|
</if>
|
|
|
|
<if test="lastUpdateTime!=null and lastUpdateTime!=''">
|
|
|
|
<if test="lastUpdateTime != null and lastUpdateTime != ''">
|
|
|
|
<![CDATA[ and DATE_FORMAT(updateTime, '%Y-%m-%d %H:%i:%S')>= DATE_FORMAT(#{lastUpdateTime}, '%Y-%m-%d %H:%i:%S') ]]>
|
|
|
|
<![CDATA[
|
|
|
|
|
|
|
|
and DATE_FORMAT(updateTime, '%Y-%m-%d %H:%i:%S') >= DATE_FORMAT(#{lastUpdateTime}, '%Y-%m-%d %H:%i:%S')
|
|
|
|
|
|
|
|
]]>
|
|
|
|
</if>
|
|
|
|
</if>
|
|
|
|
</where>
|
|
|
|
</where>
|
|
|
|
|
|
|
|
|
|
|
|
</select>
|
|
|
|
</select>
|
|
|
|
<select id="getNameByCode" resultType="java.lang.String">
|
|
|
|
<select id="getNameByCode" resultType="java.lang.String">
|
|
|
|
select name
|
|
|
|
select name
|
|
|
@ -198,10 +197,9 @@
|
|
|
|
parameterType="com.glxp.api.entity.auth.DeptEntity">
|
|
|
|
parameterType="com.glxp.api.entity.auth.DeptEntity">
|
|
|
|
replace
|
|
|
|
replace
|
|
|
|
INTO auth_dept
|
|
|
|
INTO auth_dept
|
|
|
|
(pid, code, `name`, advanceType, isDefault,
|
|
|
|
(id, pid, code, `name`, advanceType, isDefault,
|
|
|
|
status, updateTime, remark,`level`,pcode,spUse, thirdId, thirdId1, thirdId2, thirdId3, thirdId4)
|
|
|
|
status, updateTime, remark, `level`, pcode, spUse, thirdId, thirdId1, thirdId2, thirdId3, thirdId4)
|
|
|
|
values (
|
|
|
|
values (#{id}, #{pid},
|
|
|
|
#{pid},
|
|
|
|
|
|
|
|
#{code},
|
|
|
|
#{code},
|
|
|
|
#{name},
|
|
|
|
#{name},
|
|
|
|
#{advanceType},
|
|
|
|
#{advanceType},
|
|
|
@ -216,8 +214,7 @@
|
|
|
|
#{thirdId1},
|
|
|
|
#{thirdId1},
|
|
|
|
#{thirdId2},
|
|
|
|
#{thirdId2},
|
|
|
|
#{thirdId3},
|
|
|
|
#{thirdId3},
|
|
|
|
#{thirdId4}
|
|
|
|
#{thirdId4})
|
|
|
|
)
|
|
|
|
|
|
|
|
</insert>
|
|
|
|
</insert>
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
@ -227,37 +224,66 @@
|
|
|
|
WHERE id = #{id}
|
|
|
|
WHERE id = #{id}
|
|
|
|
</delete>
|
|
|
|
</delete>
|
|
|
|
|
|
|
|
|
|
|
|
<select id="getDeptById" resultType="com.glxp.api.entity.auth.DeptEntity" >
|
|
|
|
<select id="getDeptById" resultType="com.glxp.api.entity.auth.DeptEntity">
|
|
|
|
select *
|
|
|
|
select *
|
|
|
|
from auth_dept
|
|
|
|
from auth_dept
|
|
|
|
where id in
|
|
|
|
where id in
|
|
|
|
<foreach item="item" index="index" collection="ids" open="(" separator="," close=")">
|
|
|
|
<foreach item="item" index="index" collection="ids" open="(" separator="," close=")">
|
|
|
|
#{item}
|
|
|
|
#{item}
|
|
|
|
</foreach>
|
|
|
|
</foreach>
|
|
|
|
|
|
|
|
|
|
|
|
</select>
|
|
|
|
</select>
|
|
|
|
|
|
|
|
|
|
|
|
<update id="updateInvWarehouse" parameterType="com.glxp.api.entity.auth.DeptEntity">
|
|
|
|
<update id="updateInvWarehouse" parameterType="com.glxp.api.entity.auth.DeptEntity">
|
|
|
|
UPDATE auth_dept
|
|
|
|
UPDATE auth_dept
|
|
|
|
<trim prefix="set" suffixOverrides=",">
|
|
|
|
<trim prefix="set" suffixOverrides=",">
|
|
|
|
<if test="pid != null">pid=#{pid},</if>
|
|
|
|
<if test="pid != null">
|
|
|
|
<if test="name != null">name=#{name},</if>
|
|
|
|
pid=#{pid},
|
|
|
|
<if test="code != null">code=#{code},</if>
|
|
|
|
</if>
|
|
|
|
<if test="advanceType != null">advanceType=#{advanceType},</if>
|
|
|
|
<if test="name != null">
|
|
|
|
<if test="isDefault != null">isDefault=#{isDefault},</if>
|
|
|
|
name=#{name},
|
|
|
|
<if test="status != null">status=#{status},</if>
|
|
|
|
</if>
|
|
|
|
<if test="updateTime != null">updateTime=#{updateTime},</if>
|
|
|
|
<if test="code != null">
|
|
|
|
<if test="remark != null">remark=#{remark},</if>
|
|
|
|
code=#{code},
|
|
|
|
<if test="level != null">level=#{level},</if>
|
|
|
|
</if>
|
|
|
|
<if test="pcode != null">pcode=#{pcode},</if>
|
|
|
|
<if test="advanceType != null">
|
|
|
|
<if test="thirdId != null">remark=#{thirdId},</if>
|
|
|
|
advanceType=#{advanceType},
|
|
|
|
<if test="thirdId1 != null">remark=#{thirdId1},</if>
|
|
|
|
</if>
|
|
|
|
<if test="thirdId2 != null">remark=#{thirdId2},</if>
|
|
|
|
<if test="isDefault != null">
|
|
|
|
<if test="thirdId3 != null">remark=#{thirdId3},</if>
|
|
|
|
isDefault=#{isDefault},
|
|
|
|
<if test="thirdId4 != null">remark=#{thirdId4},</if>
|
|
|
|
</if>
|
|
|
|
<if test="spUse != null">spUse=#{spUse},</if>
|
|
|
|
<if test="status != null">
|
|
|
|
|
|
|
|
status=#{status},
|
|
|
|
|
|
|
|
</if>
|
|
|
|
|
|
|
|
<if test="updateTime != null">
|
|
|
|
|
|
|
|
updateTime=#{updateTime},
|
|
|
|
|
|
|
|
</if>
|
|
|
|
|
|
|
|
<if test="remark != null">
|
|
|
|
|
|
|
|
remark=#{remark},
|
|
|
|
|
|
|
|
</if>
|
|
|
|
|
|
|
|
<if test="level != null">
|
|
|
|
|
|
|
|
level=#{level},
|
|
|
|
|
|
|
|
</if>
|
|
|
|
|
|
|
|
<if test="pcode != null">
|
|
|
|
|
|
|
|
pcode=#{pcode},
|
|
|
|
|
|
|
|
</if>
|
|
|
|
|
|
|
|
<if test="thirdId != null">
|
|
|
|
|
|
|
|
remark=#{thirdId},
|
|
|
|
|
|
|
|
</if>
|
|
|
|
|
|
|
|
<if test="thirdId1 != null">
|
|
|
|
|
|
|
|
remark=#{thirdId1},
|
|
|
|
|
|
|
|
</if>
|
|
|
|
|
|
|
|
<if test="thirdId2 != null">
|
|
|
|
|
|
|
|
remark=#{thirdId2},
|
|
|
|
|
|
|
|
</if>
|
|
|
|
|
|
|
|
<if test="thirdId3 != null">
|
|
|
|
|
|
|
|
remark=#{thirdId3},
|
|
|
|
|
|
|
|
</if>
|
|
|
|
|
|
|
|
<if test="thirdId4 != null">
|
|
|
|
|
|
|
|
remark=#{thirdId4},
|
|
|
|
|
|
|
|
</if>
|
|
|
|
|
|
|
|
<if test="spUse != null">
|
|
|
|
|
|
|
|
spUse=#{spUse},
|
|
|
|
|
|
|
|
</if>
|
|
|
|
</trim>
|
|
|
|
</trim>
|
|
|
|
WHERE id = #{id}
|
|
|
|
WHERE id = #{id}
|
|
|
|
</update>
|
|
|
|
</update>
|
|
|
@ -265,7 +291,7 @@
|
|
|
|
<insert id="importInvWarehouse" parameterType="java.util.List">
|
|
|
|
<insert id="importInvWarehouse" parameterType="java.util.List">
|
|
|
|
replace into auth_dept (id, pid, code, `name`, advanceType, isDefault, status,
|
|
|
|
replace into auth_dept (id, pid, code, `name`, advanceType, isDefault, status,
|
|
|
|
updateTime, remark, `level`, pcode, thirdId, thirdId1, thirdId2, thirdId3,
|
|
|
|
updateTime, remark, `level`, pcode, thirdId, thirdId1, thirdId2, thirdId3,
|
|
|
|
thirdId4,spUse) values
|
|
|
|
thirdId4, spUse) values
|
|
|
|
<foreach collection="invWarehouseEntities" item="item" index="index" separator=",">
|
|
|
|
<foreach collection="invWarehouseEntities" item="item" index="index" separator=",">
|
|
|
|
(#{item.id},
|
|
|
|
(#{item.id},
|
|
|
|
#{item.pid},
|
|
|
|
#{item.pid},
|
|
|
@ -278,7 +304,7 @@
|
|
|
|
#{item.remark}, #{item.level},
|
|
|
|
#{item.remark}, #{item.level},
|
|
|
|
#{item.pcode}, #{item.thirdId},
|
|
|
|
#{item.pcode}, #{item.thirdId},
|
|
|
|
#{item.thirdId1}, #{item.thirdId2},
|
|
|
|
#{item.thirdId1}, #{item.thirdId2},
|
|
|
|
#{item.thirdId3}, #{item.thirdId4},#{item.spUse})
|
|
|
|
#{item.thirdId3}, #{item.thirdId4}, #{item.spUse})
|
|
|
|
</foreach>
|
|
|
|
</foreach>
|
|
|
|
</insert>
|
|
|
|
</insert>
|
|
|
|
|
|
|
|
|
|
|
@ -308,28 +334,42 @@
|
|
|
|
</select>
|
|
|
|
</select>
|
|
|
|
|
|
|
|
|
|
|
|
<select id="selectNameByCode" resultType="java.lang.String">
|
|
|
|
<select id="selectNameByCode" resultType="java.lang.String">
|
|
|
|
select name from auth_dept where code = #{code}
|
|
|
|
select name
|
|
|
|
|
|
|
|
from auth_dept
|
|
|
|
|
|
|
|
where code = #{code}
|
|
|
|
</select>
|
|
|
|
</select>
|
|
|
|
|
|
|
|
|
|
|
|
<select id="selectByPcode" resultType="com.glxp.api.entity.auth.DeptEntity">
|
|
|
|
<select id="selectByPcode" resultType="com.glxp.api.entity.auth.DeptEntity">
|
|
|
|
select * from auth_dept where pcode = #{pcode}
|
|
|
|
select *
|
|
|
|
|
|
|
|
from auth_dept
|
|
|
|
|
|
|
|
where pcode = #{pcode}
|
|
|
|
</select>
|
|
|
|
</select>
|
|
|
|
|
|
|
|
|
|
|
|
<select id="selectupDeptAll" parameterType="java.lang.String" resultType="com.glxp.api.entity.auth.DeptEntity">
|
|
|
|
<select id="selectupDeptAll" parameterType="java.lang.String" resultType="com.glxp.api.entity.auth.DeptEntity">
|
|
|
|
with recursive table_a as (
|
|
|
|
with recursive table_a as (
|
|
|
|
select * from auth_dept ta where code = #{pcode}
|
|
|
|
select *
|
|
|
|
|
|
|
|
from auth_dept ta
|
|
|
|
|
|
|
|
where code = #{pcode}
|
|
|
|
union all
|
|
|
|
union all
|
|
|
|
select tb.* from auth_dept tb inner join table_a on table_a.pcode = tb.code
|
|
|
|
select tb.*
|
|
|
|
|
|
|
|
from auth_dept tb
|
|
|
|
|
|
|
|
inner join table_a on table_a.pcode = tb.code
|
|
|
|
)
|
|
|
|
)
|
|
|
|
select * from table_a
|
|
|
|
select *
|
|
|
|
|
|
|
|
from table_a
|
|
|
|
</select>
|
|
|
|
</select>
|
|
|
|
|
|
|
|
|
|
|
|
<select id="selectLowDeptAll" parameterType="java.lang.String" resultType="com.glxp.api.entity.auth.DeptEntity">
|
|
|
|
<select id="selectLowDeptAll" parameterType="java.lang.String" resultType="com.glxp.api.entity.auth.DeptEntity">
|
|
|
|
with recursive table_a as (
|
|
|
|
with recursive table_a as (
|
|
|
|
select * from auth_dept ta where pcode = #{pcode}
|
|
|
|
select *
|
|
|
|
|
|
|
|
from auth_dept ta
|
|
|
|
|
|
|
|
where pcode = #{pcode}
|
|
|
|
union all
|
|
|
|
union all
|
|
|
|
select tb.* from auth_dept tb inner join table_a on table_a.code = tb.pcode
|
|
|
|
select tb.*
|
|
|
|
|
|
|
|
from auth_dept tb
|
|
|
|
|
|
|
|
inner join table_a on table_a.code = tb.pcode
|
|
|
|
)
|
|
|
|
)
|
|
|
|
select * from table_a
|
|
|
|
select *
|
|
|
|
|
|
|
|
from table_a
|
|
|
|
</select>
|
|
|
|
</select>
|
|
|
|
</mapper>
|
|
|
|
</mapper>
|
|
|
|