|  |  | @ -91,7 +91,7 @@ public class FileDetailController { | 
			
		
	
		
		
			
				
					
					|  |  |  |     /** |  |  |  |     /** | 
			
		
	
		
		
			
				
					
					|  |  |  |      * 根据base64内容和文件后缀上传文件 |  |  |  |      * 根据base64内容和文件后缀上传文件 | 
			
		
	
		
		
			
				
					
					|  |  |  |      */ |  |  |  |      */ | 
			
		
	
		
		
			
				
					
					|  |  |  |     @ApiOperation("根据url和文件后缀上传文件") |  |  |  |     @ApiOperation("根据base64内容和文件后缀上传文件") | 
			
				
				
			
		
	
		
		
	
		
		
			
				
					
					|  |  |  |     @RequestMapping(value = "uploadByBase64", method = RequestMethod.POST) |  |  |  |     @RequestMapping(value = "uploadByBase64", method = RequestMethod.POST) | 
			
		
	
		
		
			
				
					
					|  |  |  |     public FileInfo uploadByBase64(String base64, String contentType, HttpServletResponse response) throws IOException { |  |  |  |     public FileInfo uploadByBase64(String base64, String contentType, HttpServletResponse response) throws IOException { | 
			
		
	
		
		
			
				
					
					|  |  |  |         return ilsFileDetailService.uploadByBase64(base64, contentType, response); |  |  |  |         return ilsFileDetailService.uploadByBase64(base64, contentType, response); | 
			
		
	
	
		
		
			
				
					|  |  | 
 |