|
@@ -105,7 +105,7 @@ public class SceneEditController extends BaseController {
|
|
|
* @return com.fdkankan.common.response.ResultData
|
|
|
**/
|
|
|
@PostMapping(value = "/uploadScreencapVoiceNewV3")
|
|
|
- public ResultData uploadScreencapVoiceV3(@RequestBody @Validated FileParamVO param,
|
|
|
+ public ResultData uploadScreencapVoiceV3(FileParamVO param,
|
|
|
@RequestParam("file") MultipartFile file) throws Exception {
|
|
|
return sceneProService.uploadScreencapVoiceNewV3(param, file);
|
|
|
}
|
|
@@ -275,7 +275,7 @@ public class SceneEditController extends BaseController {
|
|
|
* @return com.fdkankan.common.response.ResultData
|
|
|
**/
|
|
|
@PostMapping(value = "/uploadHotMedia")
|
|
|
- public ResultData uploadHotMedia(@RequestBody FileParamVO param, @RequestParam("file") MultipartFile file) throws Exception {
|
|
|
+ public ResultData uploadHotMedia(FileParamVO param, @RequestParam("file") MultipartFile file) throws Exception {
|
|
|
return sceneProService.uploadHotMedia(param, file);
|
|
|
}
|
|
|
|