|  |  | 
 |  |  |     @ApiOperation(value = "上传", notes = "上传", httpMethod = "POST", position = 6) | 
 |  |  |     @ApiImplicitParams({ | 
 |  |  |             @ApiImplicitParam(name = "folder", value = "文件夹", required = true, paramType = "query", dataType = "String", dataTypeClass = String.class), | 
 |  |  |             @ApiImplicitParam(name = "file", value = "文件夹", required = true, paramType = "query", dataType = "String", dataTypeClass = String.class), | 
 |  |  |  | 
 |  |  |     }) | 
 |  |  |     @PostMapping(value = "/uploadLocal", headers = "content-type=multipart/form-data") | 
 |  |  |     public void uploadLocal(String folder, HttpServletRequest request, HttpServletResponse response) throws Exception { |