feat:部门

pg_adapter
wangxy 9 months ago
parent 3d8031a20c
commit f8d0cc5374

@ -1,16 +1,15 @@
package com.ruoyi.web.controller.system.system;
import java.util.List;
import java.util.Objects;
import io.swagger.annotations.ApiOperation;
import org.apache.shiro.authz.annotation.RequiresPermissions;
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.stereotype.Controller;
import org.springframework.ui.ModelMap;
import org.springframework.validation.annotation.Validated;
import org.springframework.web.bind.annotation.GetMapping;
import org.springframework.web.bind.annotation.PathVariable;
import org.springframework.web.bind.annotation.PostMapping;
import org.springframework.web.bind.annotation.RequestMapping;
import org.springframework.web.bind.annotation.ResponseBody;
import org.springframework.web.bind.annotation.*;
import com.ruoyi.common.annotation.Log;
import com.ruoyi.common.constant.UserConstants;
import com.ruoyi.common.core.controller.BaseController;
@ -184,4 +183,12 @@ public class SysDeptController extends BaseController
List<Ztree> ztrees = deptService.selectDeptTreeExcludeChild(dept);
return ztrees;
}
@ApiOperation("查询下级")
@GetMapping("/detpList")
@ResponseBody
public AjaxResult getDeptBydeptId(@RequestParam(required = false) Long deptId) {
return success(deptService.getDeptBydeptId(Objects.nonNull(deptId) ? deptId : 0));
}
}

@ -114,4 +114,13 @@ public interface SysDeptMapper
* @return
*/
public int selectNormalChildrenDeptById(Long deptId);
/**
* ID
*
* @param deptId ID
* @return
*/
public List<SysDept> getDeptBydeptId(Long deptId);
}

@ -114,4 +114,15 @@ public interface ISysDeptService
* @param deptId id
*/
public void checkDeptDataScope(Long deptId);
/**
*
* id
* @param deptId
* @return java.util.List<com.ruoyi.common.core.domain.entity.SysDept>
*/
public List<SysDept> getDeptBydeptId(Long deptId);
}

@ -325,4 +325,9 @@ public class SysDeptServiceImpl implements ISysDeptService
}
}
}
@Override
public List<SysDept> getDeptBydeptId(Long deptId) {
return deptMapper.getDeptBydeptId(deptId);
}
}

@ -169,4 +169,8 @@ PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN"
</foreach>
</update>
<select id="getDeptBydeptId" parameterType="Long" resultMap="SysDeptResult">
select * from ${prefix}sys_dept where parent_id = #{deptId} and del_flag = '0'
</select>
</mapper>
Loading…
Cancel
Save