| | |
| | | /** |
| | | * 懒加载列表 |
| | | */ |
| | | @PreAuth(menu = "dept") |
| | | //@PreAuth(menu = "dept") |
| | | @GetMapping("/lazy-list") |
| | | @Parameters({ |
| | | @Parameter(name = "deptName", description = "部门名称", in = ParameterIn.QUERY, schema = @Schema(type = "string")), |
| | |
| | | /** |
| | | * 获取部门树形结构 |
| | | */ |
| | | @PreAuth(menu = "dept") |
| | | //@PreAuth(menu = "dept") |
| | | @GetMapping("/tree") |
| | | @ApiOperationSupport(order = 4) |
| | | @Operation(summary = "树形结构", description = "树形结构") |
| | |
| | | /** |
| | | * 懒加载获取部门树形结构 |
| | | */ |
| | | @PreAuth(menu = "dept") |
| | | //@PreAuth(menu = "dept") |
| | | @GetMapping("/lazy-tree") |
| | | @ApiOperationSupport(order = 5) |
| | | @Operation(summary = "懒加载树形结构", description = "树形结构") |