From 16332a341801f80d27830d2ea4e683b4ab21167c Mon Sep 17 00:00:00 2001
From: k94314517 <8417338+k94314517@user.noreply.gitee.com>
Date: 星期一, 21 四月 2025 18:28:00 +0800
Subject: [PATCH] 工单业务

---
 server/src/main/java/com/doumee/core/utils/qiyeweixin/QywxUtil.java |   12 ++++++------
 1 files changed, 6 insertions(+), 6 deletions(-)

diff --git a/server/src/main/java/com/doumee/core/utils/qiyeweixin/QywxUtil.java b/server/src/main/java/com/doumee/core/utils/qiyeweixin/QywxUtil.java
index 35b38e9..36325d6 100644
--- a/server/src/main/java/com/doumee/core/utils/qiyeweixin/QywxUtil.java
+++ b/server/src/main/java/com/doumee/core/utils/qiyeweixin/QywxUtil.java
@@ -25,17 +25,16 @@
     private static JSONObject json = new JSONObject();
 
 
-    @Autowired
-    private SystemDictDataBiz systemDictDataBiz;
 
     private static QywxUtil qyUtil;
+
     @Value("${qiwei.serviceurl}")
-    private static String qiweiUrl;
+    private    String qiweiUrl;
 
     @PostConstruct
     private void init() {
         qyUtil = this;
-        systemDictDataBiz = qyUtil.systemDictDataBiz;
+//        QywxUtil.qiweiUrl =  serviceurl;
     }
 
 
@@ -89,6 +88,7 @@
             String url = interfaceUrl[0].replace("${accesstoken}",token);
             QywxSendMsgResponse response = sendHttpRequestSingle(url,interfaceUrl[1],JSONObject.toJSONString(param)
                     ,new TypeReference<QywxSendMsgResponse>(){});
+            log.error("鎺ㄩ�佹秷鎭粨鏋渰}",JSONObject.toJSONString(response));
             if(response.getErrcode()!=null && response.getErrcode() ==0){
                 return response;
             }
@@ -161,7 +161,7 @@
             String res = null;
             try {
                 Map<String,String> headers = new HashMap<>();
-                res = HttpsUtil.postJson(qiweiUrl+url,param);
+                res = HttpsUtil.postJson(qyUtil.qiweiUrl+url,param);
                 QywxBaseResponse result = JSONObject.parseObject(res, typeReference.getType());
                 logResult(result,name);
                 return  result;
@@ -178,7 +178,7 @@
             String res = null;
             try {
                 Map<String,String> headers = new HashMap<>();
-                res = HttpsUtil.postJson(qiweiUrl+url,param);
+                res = HttpsUtil.postJson(qyUtil.qiweiUrl+url,param);
                 T result = JSONObject.parseObject(res, typeReference.getType());
 //                logResult(result,name);
                 return  result;

--
Gitblit v1.9.3