|
@@ -25,10 +25,13 @@ public class FileDownServiceFallback implements FileDownService {
|
|
|
}
|
|
|
|
|
|
@Override
|
|
|
- public ResponseBodyVO<String> uploadProcessBar(MultipartFile file, String objectName) {
|
|
|
+ public ResponseBodyVO<String> uploadProcessBar(@RequestPart("file") MultipartFile file,
|
|
|
+ @RequestParam("objectName") String objectName,
|
|
|
+ @RequestParam("objectName") String objectPath) {
|
|
|
return null;
|
|
|
}
|
|
|
|
|
|
+
|
|
|
@Override
|
|
|
public Response download(@RequestBody @Validated MinioParameter minioParameter) {
|
|
|
log.error("------- 下载错误:" + minioParameter.getObjectName());
|