shs 1 éve
szülő
commit
e5ddde2d9a

+ 8 - 0
aidex-system/src/main/java/com/aidex/common/gps/common/GpsRequest.java

@@ -3,10 +3,14 @@ package com.aidex.common.gps.common;
 import cn.hutool.http.HttpRequest;
 import com.aidex.common.exception.SysException;
 import com.aidex.common.utils.StringUtils;
+import com.aidex.system.service.impl.SysUserServiceImpl;
 import com.alibaba.fastjson2.JSON;
 import com.alibaba.fastjson2.JSONArray;
 import com.alibaba.fastjson2.JSONObject;
 import com.alibaba.fastjson2.TypeReference;
+import lombok.extern.slf4j.Slf4j;
+import org.slf4j.Logger;
+import org.slf4j.LoggerFactory;
 import org.springframework.beans.factory.annotation.Autowired;
 import org.springframework.stereotype.Component;
 
@@ -17,6 +21,8 @@ import java.util.Map;
 @Component
 public class GpsRequest {
 
+    private static final Logger log = LoggerFactory.getLogger(GpsRequest.class);
+
     @Autowired
     private GeneratorGspApi generatorGspApi;
 
@@ -130,12 +136,14 @@ public class GpsRequest {
     private JSONObject postRequest(Map<String,Object> params, Integer timeOut){
         String api = generatorGspApi.GeneratorApi();
         String res = HttpRequest.post(api).form(params).timeout(timeOut).execute().body();
+        log.info("GPS请求数据打印:请求接口:"+params.get("w")+"  返回数据:"+res);
         return JSON.parseObject(res);
     }
 
     private JSONObject getRequest(Map<String,Object> params, Integer timeOut){
         String api = generatorGspApi.GeneratorApi();
         String res = HttpRequest.get(api).form(params).timeout(timeOut).execute().body();
+        log.info("GPS请求数据打印:请求接口:"+params.get("w")+"  返回数据:"+res);
         return JSON.parseObject(res);
     }
 }