heheng
2025-07-08 427f9796bf60fe1262131a8fd6ae6c25e02574be
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
<?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.gkhy.exam.system.mapper.SysDeptMapper">
 
    <resultMap type="com.gkhy.exam.common.domain.entity.SysDept" id="SysDeptResult">
        <id     property="deptId"     column="dept_id"     />
        <result property="parentId"   column="parent_id"   />
        <result property="companyId"   column="company_id"   />
        <result property="ancestors"  column="ancestors"   />
        <result property="deptName"   column="dept_name"   />
        <result property="orderNum"   column="order_num"   />
        <result property="leaderUserId"     column="leader_user_id"      />
        <result property="leaderName"     column="leader_name"      />
        <result property="status"     column="status"      />
        <result property="delFlag"    column="del_flag"    />
        <result property="parentName" column="parent_name" />
        <result property="createBy"   column="create_by"   />
        <result property="createTime" column="create_time" />
        <result property="updateBy"   column="update_by"   />
        <result property="updateTime" column="update_time" />
        <result property="responsibilities"   column="responsibilities"   />
        <result property="deptType"   column="dept_type"   />
        <result property="responsType"   column="respons_type"   />
        <result property="personNum" column="person_num" />
        <result property="internalAuditors" column="internal_auditors" />
        <result property="internalAuditorsName"   column="internal_auditors_name"   />
    </resultMap>
    <resultMap type="com.gkhy.exam.system.domain.vo.DeptVo" id="DeptVoResult" extends="SysDeptResult">
        <collection property="caluseVO1List" ofType="com.gkhy.exam.system.domain.vo.CaluseVO1">
            <result     property="clauseNum"     column="clause_num"     />
            <result property="content"     column="content"     />
            <result     property="clauseId"     column="clause_id"     />
            <result     property="id"     column="data_id"     />
        </collection>
        <collection ofType="com.gkhy.exam.system.domain.vo.SysDeptManageVo" property="sysDeptManageVoList">
            <result     property="subDeptId"     column="sub_dept_id"     />
            <result     property="subDeptName"     column="sub_dept_name"     />
            <result     property="deptId"     column="p_dept_id"     />
 
        </collection>
    </resultMap>
    
    <sql id="selectDeptVo">
        select d.dept_id, d.parent_id, d.ancestors, d.dept_name, d.order_num, d.leader_user_id, d.company_id, d.status, d.del_flag, d.create_by, d.create_time,d.person_num,d.internal_auditors,
            d.responsibilities,d.dept_type,d.respons_type
        from sys_dept d
    </sql>
    
    <select id="selectDeptList" parameterType="com.gkhy.exam.common.domain.entity.SysDept" resultMap="DeptVoResult">
        select d.dept_id, d.parent_id, d.ancestors, d.dept_name, d.order_num, d.leader_user_id, d.company_id, d.status, d.del_flag, d.create_by, d.create_time,d.person_num,d.internal_auditors,
        d.responsibilities,d.dept_type,d.respons_type,u.name as leader_name,d2.dept_name as parent_name, dr.content ,dr.clause_num,dr.id as data_id,dr.clause_id,
        sm.sub_dept_id ,sm2.dept_name sub_dept_name,sm.dept_id as p_dept_id
        from sys_dept d
        left join sys_user u on d.leader_user_id = u.id
        left join sys_dept d2 on d.parent_id = d2.dept_id
        left join sys_dept_responsibility dr on d.dept_id = dr.dept_id and dr.del_flag = '0' and data_type = 2
        left join sys_dept_manage sm on d.dept_id = sm.dept_id
        left join sys_dept sm2 on sm2.dept_id = sm.sub_dept_id
        where d.del_flag = '0'
        <if test="companyId != null and companyId != 0">
            AND d.company_id = #{companyId}
        </if>
        <if test="deptType != null and deptType != '' " >
            AND d.dept_type = #{deptType}
        </if>
        <if test="responsType != null and responsType != '' " >
            AND d.respons_type = #{responsType}
        </if>
        <if test="deptId != null and deptId != 0">
            AND d.dept_id = #{deptId}
        </if>
        <if test="parentId != null and parentId != 0">
            AND d.parent_id = #{parentId}
        </if>
        <if test="deptName != null and deptName != ''">
            AND d.dept_name like concat('%', #{deptName}, '%')
        </if>
        <if test="status != null and status != ''">
            AND d.status = #{status}
        </if>
        order by d.parent_id, d.order_num
    </select>
 
 
    <select id="getOutDeptList" parameterType="com.gkhy.exam.common.domain.entity.SysDept" resultMap="SysDeptResult">
        <include refid="selectDeptVo"/>
        where d.del_flag = '0'
        <if test="companyId != null and companyId != 0">
            AND company_id = #{companyId}
        </if>
        <if test="deptId != null and deptId != 0">
            AND dept_id = #{deptId}
        </if>
        <if test="parentId != null and parentId != 0">
            AND parent_id = #{parentId}
        </if>
        <if test="deptName != null and deptName != ''">
            AND dept_name like concat('%', #{deptName}, '%')
        </if>
        <if test="status != null and status != ''">
            AND status = #{status}
        </if>
        order by d.parent_id, d.order_num
    </select>
 
    
    <select id="selectDeptListByRoleId" resultType="Long">
        select d.dept_id
        from sys_dept d
            left join sys_role_dept rd on d.dept_id = rd.dept_id
        where rd.role_id = #{roleId}
            <if test="deptCheckStrictly">
              and d.dept_id not in (select d.parent_id from sys_dept d inner join sys_role_dept rd on d.dept_id = rd.dept_id and rd.role_id = #{roleId})
            </if>
        order by d.parent_id, d.order_num
    </select>
    
    <select id="selectDeptById" parameterType="Long" resultMap="SysDeptResult">
        select d.dept_id, d.parent_id, d.ancestors, d.dept_name, d.order_num, d.leader_user_id,d.company_id,d.status,d.person_num,d.internal_auditors,
               d.responsibilities,d.dept_type,d.respons_type,
            (select dept_name from sys_dept where dept_id = d.parent_id) parent_name,(select dept_name from sys_user where id = d.leader_user_id) leader_name
                ,(select dept_name from sys_user where id = d.internal_auditors) internal_auditors_name
        from sys_dept d
        where d.dept_id = #{deptId}
    </select>
    
    <select id="checkDeptExistUser" parameterType="Long" resultType="int">
        select count(1) from sys_user where dept_id = #{deptId} and del_flag = '0'
    </select>
    
    <select id="hasChildByDeptId" parameterType="Long" resultType="int">
        select count(1) from sys_dept
        where del_flag = '0' and parent_id = #{deptId} limit 1
    </select>
    
    <select id="selectChildrenDeptById" parameterType="Long" resultMap="SysDeptResult">
        select * from sys_dept where find_in_set(#{deptId}, ancestors)
    </select>
    
    <select id="selectNormalChildrenDeptById" parameterType="Long" resultType="int">
        select count(*) from sys_dept where status = 0 and del_flag = '0' and find_in_set(#{deptId}, ancestors)
    </select>
    
    <select id="checkDeptNameUnique" resultMap="SysDeptResult">
        <include refid="selectDeptVo"/>
        where dept_name=#{deptName} and parent_id = #{parentId}
        and company_id = #{companyId}
        and del_flag = '0' limit 1
    </select>
    
    <insert id="insertDept" parameterType="com.gkhy.exam.common.domain.entity.SysDept" useGeneratedKeys="true" keyProperty="deptId">
         insert into sys_dept(
             <if test="deptId != null and deptId != 0">dept_id,</if>
             <if test="parentId != null and parentId != 0">parent_id,</if>
             <if test="deptName != null and deptName != ''">dept_name,</if>
             <if test="ancestors != null and ancestors != ''">ancestors,</if>
             <if test="orderNum != null">order_num,</if>
             <if test="leaderUserId != null ">leader_user_id,</if>
             <if test="companyId != null ">company_id,</if>
            <if test="personNum != null">person_num,</if>
            <if test="internalAuditors != null">internal_auditors,</if>
            <if test="responsibilities != null and responsibilities != ''">responsibilities,</if>
             <if test="status != null">status,</if>
             <if test="createBy != null and createBy != ''">create_by,</if>
            <if test="responsType != null and responsType != ''">respons_type,</if>
             create_time
         )values(
             <if test="deptId != null and deptId != 0">#{deptId},</if>
             <if test="parentId != null and parentId != 0">#{parentId},</if>
             <if test="deptName != null and deptName != ''">#{deptName},</if>
             <if test="ancestors != null and ancestors != ''">#{ancestors},</if>
             <if test="orderNum != null">#{orderNum},</if>
             <if test="leaderUserId != null">#{leaderUserId},</if>
             <if test="companyId != null ">#{companyId},</if>
            <if test="personNum != null">#{personNum},</if>
            <if test="internalAuditors != null">#{internalAuditors},</if>
            <if test="responsibilities != null and responsibilities != ''">#{responsibilities},</if>
             <if test="status != null">#{status},</if>
             <if test="createBy != null and createBy != ''">#{createBy},</if>
            <if test="responsType != null and responsType != ''">#{responsType},</if>
             sysdate()
         )
    </insert>
    
    <update id="updateDept" parameterType="com.gkhy.exam.common.domain.entity.SysDept">
         update sys_dept
         <set>
             <if test="parentId != null and parentId != 0">parent_id = #{parentId},</if>
             <if test="deptName != null and deptName != ''">dept_name = #{deptName},</if>
             <if test="ancestors != null and ancestors != ''">ancestors = #{ancestors},</if>
             <if test="orderNum != null">order_num = #{orderNum},</if>
             <if test="leaderUserId != null">leader_user_id = #{leaderUserId},</if>
            <if test="personNum != null">person_num = #{personNum},</if>
            <if test="internalAuditors != null">internal_auditors = #{internalAuditors},</if>
            <if test="responsibilities != null and responsibilities != ''">responsibilities = #{responsibilities},</if>
             <if test="status != null and status != ''">status = #{status},</if>
             <if test="updateBy != null and updateBy != ''">update_by = #{updateBy},</if>
            <if test="responsType != null and responsType != ''">respons_type = #{responsType},</if>
             update_time = sysdate()
         </set>
         where dept_id = #{deptId}
    </update>
    
    <update id="updateDeptChildren" parameterType="java.util.List">
        update sys_dept set ancestors =
        <foreach collection="depts" item="item" index="index"
            separator=" " open="case dept_id" close="end">
            when #{item.deptId} then #{item.ancestors}
        </foreach>
        where dept_id in
        <foreach collection="depts" item="item" index="index"
            separator="," open="(" close=")">
            #{item.deptId}
        </foreach>
    </update>
     
    <update id="updateDeptStatusNormal" parameterType="Long">
         update sys_dept set status = '0' where dept_id in 
         <foreach collection="array" item="deptId" open="(" separator="," close=")">
            #{deptId}
        </foreach>
    </update>
    
    <delete id="deleteDeptById" parameterType="Long">
        update sys_dept set del_flag = '1' where dept_id = #{deptId}
    </delete>
 
 
    <insert id="insetMangeBatch">
        insert into sys_dept_manage(dept_id,sub_dept_id,company_id) values
        <foreach item="item" index="index" collection="list" separator=",">
            (#{item.deptId},#{item.subDeptId},#{item.companyId})
        </foreach>
    </insert>
 
    <delete id="deleteMangeBatch">
        delete from sys_dept_manage where dept_id = #{deptId}
    </delete>
 
    <select id="getAllManage" parameterType="long" resultType="com.gkhy.exam.system.domain.SysDeptManage">
        select * from sys_dept_manage
        where company_id = #{companyId}
    </select>
 
</mapper>