zxl
2025-02-24 17e9ad4bbbbd0129e8da4dc0cfeee0028d7121e0
system/src/main/resources/mapper/system/SysDeptMapper.xml
@@ -100,6 +100,10 @@
      where SU.user_id = #{userId}
   </select>
   <select id="selectByName" parameterType="string" resultType="long">
      SELECT dept_id FROM sys_dept WHERE dept_name = #{name} and del_flag = '0' limit 1
   </select>
    <insert id="insertDept" parameterType="SysDept">
       insert into sys_dept(
          <if test="deptId != null and deptId != 0">dept_id,</if>
@@ -131,9 +135,9 @@
   <update id="updateDept" parameterType="SysDept">
       update sys_dept
       <set>
          <if test="parentId != null and parentId != 0">parent_id = #{parentId},</if>
          <if test="parentId != null">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="ancestors != null">ancestors = #{ancestors},</if>
          <if test="orderNum != null">order_num = #{orderNum},</if>
          <if test="leader != null">leader = #{leader},</if>
          <if test="phone != null">phone = #{phone},</if>