|  |  | @@ -8,10 +8,12 @@ import org.slf4j.LoggerFactory; | 
		
	
		
			
			|  |  |  | import org.springframework.beans.factory.annotation.Value; | 
		
	
		
			
			|  |  |  | import org.springframework.web.bind.annotation.GetMapping; | 
		
	
		
			
			|  |  |  | import org.springframework.web.bind.annotation.PostMapping; | 
		
	
		
			
			|  |  |  | import org.springframework.web.bind.annotation.RequestMapping; | 
		
	
		
			
			|  |  |  | import org.springframework.web.bind.annotation.RestController; | 
		
	
		
			
			|  |  |  | 
 | 
		
	
		
			
			|  |  |  | @RestController | 
		
	
		
			
			|  |  |  | @Api(tags = "") | 
		
	
		
			
			|  |  |  | @RestController | 
		
	
		
			
			|  |  |  | @RequestMapping("/home") | 
		
	
		
			
			|  |  |  | public class HomeController extends BaseController { | 
		
	
		
			
			|  |  |  | private final Logger logger = LoggerFactory.getLogger(this.getClass()); | 
		
	
		
			
			|  |  |  | 
 | 
		
	
	
		
			
				|  |  | 
 |