| | |
| | | |
| | | @ApiOperation("软件上传") |
| | | @PostMapping("upload") |
| | | public Response upload(@RequestParam MultipartFile file1,@RequestParam MultipartFile file2,@RequestParam String softwareStr) throws IOException { |
| | | public Response upload(@RequestParam MultipartFile file1,@RequestParam MultipartFile file2,@RequestParam String fontUpdateTime,@RequestParam String softwareStr) throws IOException { |
| | | List<Software> softwareList = ActionUtil.getGson().fromJson(softwareStr,new TypeToken<List<Software>>(){}.getType()); |
| | | return service.upload(file1,file2,softwareList); |
| | | return service.upload(file1,file2,fontUpdateTime,softwareList); |
| | | } |
| | | |
| | | @ApiOperation("更新软件版本对应的适用机型") |