| 
					
				 | 
			
			
				@@ -6,6 +6,7 @@ import org.springframework.beans.factory.annotation.Autowired; 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				 import org.springframework.web.bind.annotation.*; 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				  
			 | 
		
	
		
			
				 | 
				 | 
			
			
				 import java.math.BigDecimal; 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				+import java.util.HashMap; 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				 import java.util.List; 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				 import java.util.Map; 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				  
			 | 
		
	
	
		
			
				| 
					
				 | 
			
			
				@@ -60,7 +61,9 @@ public class TmstruckSelfMachineController extends BaseRESTfulController { 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				     */ 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				     @PostMapping("/queryNumber") 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				     public Map<String,Object> queryNumber(@RequestParam String orderNumber){ 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				-        Map<String,Object> bigDecimal = tmstruckSelfMachineService.queryNumber(orderNumber); 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				+        //Map<String,Object> bigDecimal = tmstruckSelfMachineService.queryNumber(orderNumber); 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				+        Map<String,Object> bigDecimal=new HashMap<>(); 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				+        bigDecimal.put("printnumber",0); 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				         return bigDecimal; 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				     } 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				  
			 |