rentaiming
2024-07-20 4c8992891ac92ace938ad81f38d7b9fb6e5cd78c
ruoyi-modules/ruoyi-system/src/main/resources/mapper/system/SysDeptMapper.xml
@@ -23,7 +23,7 @@
   </resultMap>
   
   <sql id="selectDeptVo">
        select d.dept_id, d.parent_id, d.ancestors, d.dept_name, d.order_num, d.leader, d.phone, d.email, d.status, d.del_flag, d.create_by, d.create_time
        select d.dept_id,  d.dept_name, d.del_flag, d.create_by, d.create_time
        from sys_dept d
    </sql>
    
@@ -33,18 +33,9 @@
      <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>
      <!-- 数据范围过滤 -->
      ${params.dataScope}
      order by d.parent_id, d.order_num
    </select>
    
    <select id="selectDeptListByRoleId" resultType="Long">
@@ -88,26 +79,12 @@
    <insert id="insertDept" parameterType="com.ruoyi.system.api.domain.SysDept">
       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="leader != null and leader != ''">leader,</if>
          <if test="phone != null and phone != ''">phone,</if>
          <if test="email != null and email != ''">email,</if>
          <if test="status != null">status,</if>
          <if test="createBy != null and createBy != ''">create_by,</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="leader != null and leader != ''">#{leader},</if>
          <if test="phone != null and phone != ''">#{phone},</if>
          <if test="email != null and email != ''">#{email},</if>
          <if test="status != null">#{status},</if>
          <if test="createBy != null and createBy != ''">#{createBy},</if>
          sysdate()
       )
@@ -116,14 +93,7 @@
   <update id="updateDept" parameterType="com.ruoyi.system.api.domain.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="leader != null">leader = #{leader},</if>
          <if test="phone != null">phone = #{phone},</if>
          <if test="email != null">email = #{email},</if>
          <if test="status != null and status != ''">status = #{status},</if>
          <if test="updateBy != null and updateBy != ''">update_by = #{updateBy},</if>
          update_time = sysdate()
       </set>