| 
					
				 | 
			
			
				@@ -69,11 +69,11 @@ public class GreeLogic { 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				     @Value("${gree.fs.appid}") 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				     private String fsAppId; 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				     @Value("${uploadbaseurl}") 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				-    private String uploadbaseurl = ""; 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				+    private String uploadbaseurl; 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				     @Value("${sevefileurl}") 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				-    private String sevefileurl = ""; 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				+    private String sevefileurl; 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				     @Value("${downfileurl}") 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				-    private String downfileurl = ""; 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				+    private String downfileurl; 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				     @Value("${gree.gz.appkey}") 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				     private String gzAppKey; 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				     @Value("${gree.fs.appkey}") 
			 | 
		
	
	
		
			
				| 
					
				 | 
			
			
				@@ -87,7 +87,7 @@ public class GreeLogic { 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				     @Value("${imagesign}") 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				     private String imagesignUrl; 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				     @Value("${imageurl}") 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				-    private String imageurl = ""; 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				+    private String imageurl; 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				     @Value("${gree.file.client.id}") 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				     private String clientFileId; 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				     @Value("${gree.V3.client.file.secert}") 
			 | 
		
	
	
		
			
				| 
					
				 | 
			
			
				@@ -96,7 +96,7 @@ public class GreeLogic { 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				     private String tokenFileUrl; 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				  
			 | 
		
	
		
			
				 | 
				 | 
			
			
				     @Value("${tdownfileurl}") 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				-    private String tdownfileurl = ""; 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				+    private String tdownfileurl; 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				  
			 | 
		
	
		
			
				 | 
				 | 
			
			
				  
			 | 
		
	
		
			
				 | 
				 | 
			
			
				     @Autowired 
			 | 
		
	
	
		
			
				| 
					
				 | 
			
			
				@@ -1155,20 +1155,4 @@ public class GreeLogic { 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				     } 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				  
			 | 
		
	
		
			
				 | 
				 | 
			
			
				  
			 | 
		
	
		
			
				 | 
				 | 
			
			
				-    public JSONObject postOther(String apiPath,String bizContent){ 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				-        Map<String,String> header = new HashMap<>(); 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				-        header.put("authorization","Bearer "+this.getAccessToken()); 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				-        String s = HttpUtils.requestPostBody(apiPath, bizContent, header); 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				-        log.info("【总部接口对接】response:{}",s); 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				- 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				-        JSONObject jsonObject = JSONObject.parseObject(s); 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				-        Integer statusCode = jsonObject.getInteger("statusCode"); 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				-        if (statusCode != 200) { 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				-            log.error("接口地址:{},对接总部接口失败",apiPath); 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				-            return null; 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				-        } 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				-        return jsonObject; 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				-    } 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				- 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				- 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				 } 
			 |