src/main/java/com/whyc/controller/SoftwareController.java | ●●●●● 补丁 | 查看 | 原始文档 | blame | 历史 |
src/main/java/com/whyc/controller/SoftwareController.java
@@ -38,8 +38,8 @@ */ @ApiOperation("上传") @PostMapping("upload") public Response upload(@RequestParam MultipartFile file,@RequestParam int id) throws IOException { return service.upload(file,id); public Response upload(@RequestParam MultipartFile file,@RequestParam int id,@RequestParam String description) throws IOException { return service.upload(file,id,description); } @GetMapping("getPage")