|  | @ -68,8 +68,13 @@ public class DoctorInterceptor extends BaseInterceptor {
 | 
	
		
			
				|  |  |                 CudUrl cudUrl = cudUrlDao.findByUrl(url);
 | 
	
		
			
				|  |  | 
 | 
	
		
			
				|  |  |                 if (cudUrl != null) {
 | 
	
		
			
				|  |  |                     response.getOutputStream().write(error(403, "该操作没有权限").getBytes());
 | 
	
		
			
				|  |  |                     return false;
 | 
	
		
			
				|  |  |                     if (StringUtils.isNotEmpty(cudUrl.getMethod()) &&
 | 
	
		
			
				|  |  |                             request.getMethod().toUpperCase().compareTo(cudUrl.getMethod()) != 0) {
 | 
	
		
			
				|  |  |                         return true;
 | 
	
		
			
				|  |  |                     } else {
 | 
	
		
			
				|  |  |                         response.getOutputStream().write(error(403, "该操作没有权限").getBytes());
 | 
	
		
			
				|  |  |                         return false;
 | 
	
		
			
				|  |  |                     }
 | 
	
		
			
				|  |  |                 }
 | 
	
		
			
				|  |  | 
 | 
	
		
			
				|  |  |                 return true;
 |