| 
					
				 | 
			
			
				@@ -1,6 +1,7 @@ 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				 package com.ruoyi.job.task; 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				  
			 | 
		
	
		
			
				 | 
				 | 
			
			
				 import com.usky.common.core.utils.StringUtils; 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				+import com.usky.demo.RemoteMeetingService; 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				 import com.usky.fire.RemoteFireService; 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				 import com.usky.iot.RemoteIotTaskService; 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				 import com.usky.iot.RemotePmService; 
			 | 
		
	
	
		
			
				| 
					
				 | 
			
			
				@@ -23,6 +24,9 @@ public class RyTask { 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				     @Autowired 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				     private RemoteIotTaskService remoteIotTaskService; 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				  
			 | 
		
	
		
			
				 | 
				 | 
			
			
				+    @Autowired 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				+    private RemoteMeetingService remoteMeetingService; 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				+ 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				     public void ryMultipleParams(String s, Boolean b, Long l, Double d, Integer i) { 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				         System.out.println(StringUtils.format("执行多参方法: 字符串类型{},布尔类型{},长整型{},浮点型{},整形{}", s, b, l, d, i)); 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				     } 
			 | 
		
	
	
		
			
				| 
					
				 | 
			
			
				@@ -60,4 +64,9 @@ public class RyTask { 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				         remoteIotTaskService.customInfoStatus(); 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				     } 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				  
			 | 
		
	
		
			
				 | 
				 | 
			
			
				+    public void meetingInfoStatus(){ 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				+        System.out.println("meetingInfoStatus start......"); 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				+        remoteMeetingService.meetingInfoStatus(); 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				+    } 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				+ 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				 } 
			 |