This commit is contained in:
2026-06-01 14:39:00 +08:00
parent a4c9c4c919
commit 9e86471063
38 changed files with 78 additions and 10 deletions
@@ -38,7 +38,7 @@ public class MinioFileController {
MultipartFile file = fileMap.values().iterator().next();
log.info("接收到上传文件请求,fileName={}", file.getOriginalFilename());
String relativePath = localFileService.upload(file);
return R.success(relativePath);
return R.data(relativePath);
}
@GetMapping("/download")