| 
					
				 | 
			
			
				@@ -114,7 +114,7 @@ public class OrderController extends CommonController { 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				     @Operation(summary = "申请退款", security = {@SecurityRequirement(name = "Authorization")}) 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				     @PostMapping("/applyForRefund/{id}") 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				     public Result<?> applyForRefund( 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				-            @PathVariable Long id, 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				+            @PathVariable String id, 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				             @RequestBody Map<String, Object> map 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				     ) { 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				         String refundReason = map.get("refundReason") != null ? map.get("refundReason").toString() : ""; 
			 |