| 
					
				 | 
			
			
				@ -6,16 +6,18 @@ import io.swagger.annotations.Api; 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				import io.swagger.annotations.ApiOperation; 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				import io.swagger.annotations.ApiParam; 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				import org.springframework.beans.factory.annotation.Autowired; 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				import org.springframework.context.annotation.Profile; 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				import org.springframework.web.bind.annotation.*; 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				/** 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				 * 测试接口 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				 * 宇视人脸数据测试接口 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				 * Created by yeshijie on 2022/5/25. 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				 */ 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				@RestController 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				@RequestMapping(value = "/test",produces = "application/json") 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				@Api(value = "测试接口", description = "测试接口") 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				public class TestController extends BaseController { 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				@Profile({"hzprod"}) 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				@RequestMapping(value = "/netDevTest",produces = "application/json") 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				@Api(value = "宇视人脸数据测试接口", description = "宇视人脸数据测试接口") 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				public class NetdevTestController extends BaseController { 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				    @Autowired 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				    private NetDevSdkService netDevSdkService; 
			 |