whycxzp
2025-05-23 1a17130934622ff8ba8e781679fc206ab7af5a84
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")