|
@@ -66,7 +66,6 @@ public class FileController {
|
|
|
@GetMapping("/get-list")
|
|
|
@Operation(summary = "获得文件集合")
|
|
|
@Parameter(name = "ids", description = "编号集合", required = true, example = "1,2")
|
|
|
- @PreAuthorize("@ss.hasPermission('infra:file-config:query')")
|
|
|
public CommonResult<List<FileRespVO>> getFileConfig(@RequestParam("ids") List<Long> ids) {
|
|
|
List<FileDO> fileList = fileService.getFileList(ids);
|
|
|
return success(FileConvert.INSTANCE.convertList(fileList));
|