xiangpei
2025-02-14 11e8a8f6e8cc27514447a49606842b890cdadba8
system/src/main/resources/mapper/system/SysDeptMapper.xml
@@ -65,6 +65,13 @@
      where d.dept_id = #{deptId}
   </select>
   <select id="selectDeptByIds" parameterType="Long" resultMap="SysDeptResult">
      select d.dept_id, d.parent_id, d.ancestors, d.dept_name, d.order_num, d.leader, d.phone, d.email, d.status,
            (select dept_name from sys_dept where dept_id = d.parent_id) parent_name
      from sys_dept d
      where d.dept_id in <foreach collection="deptIds" open="(" separator="," close=")" item="deptId">#{deptId}</foreach>
   </select>
    <select id="checkDeptExistUser" parameterType="Long" resultType="int">
      select count(1) from sys_user where dept_id = #{deptId} and del_flag = '0'
   </select>