xiangpei
2025-04-23 c1a9747777ea9aee817f306475c94031e5559cc4
start/src/main/java/com/ycl/web/controller/system/SysDeptController.java
@@ -43,10 +43,11 @@
    private final static Long userPortId = 101L;
    //审批端id
    private final static Long approvalPortId = 102L;
    /**
     * 获取部门列表
     */
    @PreAuthorize("@ss.hasPermi('system:dept:list')")
//    @PreAuthorize("@ss.hasPermi('system:dept:list')")
    @GetMapping("/list")
    public AjaxResult list(SysDept dept)
    {
@@ -153,4 +154,5 @@
        dept.setParentId(approvalPortId);
        return Result.ok().data(deptService.selectDeptListNoAuth(dept));
    }
}