From 4fabfe4dbd2eb28d07a4350597d314958cc1c281 Mon Sep 17 00:00:00 2001
From: MrShi <1878285526@qq.com>
Date: 星期四, 09 十月 2025 11:16:43 +0800
Subject: [PATCH] 优化

---
 server/platform/src/main/java/com/doumee/task/ScheduleTool.java |   50 ++++++++++++++++++++++++++++++++++++++++++++++----
 1 files changed, 46 insertions(+), 4 deletions(-)

diff --git a/server/platform/src/main/java/com/doumee/task/ScheduleTool.java b/server/platform/src/main/java/com/doumee/task/ScheduleTool.java
index bf31212..e755ee9 100644
--- a/server/platform/src/main/java/com/doumee/task/ScheduleTool.java
+++ b/server/platform/src/main/java/com/doumee/task/ScheduleTool.java
@@ -4,6 +4,7 @@
 import com.alibaba.fastjson.JSONObject;
 import com.doumee.biz.system.SystemDictDataBiz;
 import com.doumee.core.constants.Constants;
+import com.doumee.core.dingding.DingDingNotice;
 import com.doumee.core.exception.BusinessException;
 import com.doumee.core.mqtt.config.MqttClientInit;
 import com.doumee.core.utils.DateUtil;
@@ -67,8 +68,11 @@
         //鍓嶄竴澶╃殑鏁告摎
         Date ydate = DateUtil.addDaysToDate(new Date(), -1);
         wxBillService.getWxBill(ydate);
-
     }
+
+
+
+
     /**
      * 娓│
      * @throws Exception
@@ -88,10 +92,22 @@
     @Scheduled(cron = "0/15 * * * * ? ")
     public void autoRefreshLockStatus() throws Exception {
         log.info("=====================寮�濮嬪畾鏃跺埛鏂伴獞琛屼腑鐨勬暟鍏呭�兼湭寮�閿佸け璐�=======================");
-       //memberRidesService.autoRefreshLockStatus();
+       memberRidesService.autoRefreshLockStatus();
         log.info("=====================缁撴潫瀹氭椂鍒锋柊楠戣涓殑鏁板厖鍊兼湭寮�閿佸け璐�=======================");
     }
 
+
+    /**
+     * 瀹氭椂鍏抽棴 瓒呮椂鏈敮浠樼殑璁㈠崟
+     * 30 绉掑埛鏂颁竴娆�
+     * @throws Exception
+     */
+    @Scheduled(cron = "0/15 * * * * ? ")
+    public void autCancel() throws Exception {
+        log.info("=====================寮�濮嬪畾鏃跺埛鏂板叧闂秴鏃舵湭鏀粯鐨勮鍗�=======================");
+        goodsorderService.autCancel();
+        log.info("=====================缁撴潫瀹氭椂鍒锋柊鍏抽棴瓒呮椂鏈敮浠樼殑璁㈠崟=======================");
+    }
 
     /**
      * 绔欑偣杞﹁締婊℃灦鐜囬璀�
@@ -120,7 +136,7 @@
     /**
      * 鏇存柊寰俊 ACCESS_TOKEN
      */
-    @Scheduled(fixedDelay = 1000L * 60L * 90L)
+//    @Scheduled(fixedDelay = 1000L * 60L * 90L)
     public void updAccessToken(){
         DefaultWebSecurityManager manager = new DefaultWebSecurityManager();
         ThreadContext.bind(manager);
@@ -133,7 +149,7 @@
         }
         //鐢熸垚寰俊token
         String url = "https://api.weixin.qq.com/cgi-bin/token?grant_type=client_credential&appid="+appId+"&secret="+appSecret;
-        String response = HttpsUtil.doGet(url,null);
+        String response = HttpsUtil.get(url,false);
         JSONObject json = JSONObject.parseObject(response);
         SystemDictData systemDictData = systemDictDataBiz.queryByCode(Constants.MINI_PROGRAMME,Constants.ACCESS_TOKEN);
         if(!Objects.isNull(systemDictData)){
@@ -145,6 +161,24 @@
     /**
      * 鏇存柊寰俊 ACCESS_TOKEN
      */
+    @Scheduled(fixedDelay = 1000L * 60L * 90L)
+    public void updAccessDingdingToken() throws Exception {
+        DefaultWebSecurityManager manager = new DefaultWebSecurityManager();
+        ThreadContext.bind(manager);
+        String token = DingDingNotice.getToken(systemDictDataBiz.queryByCode(Constants.DINGDING,Constants.DINGDING_APPKEY).getCode()
+                ,systemDictDataBiz.queryByCode(Constants.DINGDING,Constants.DINGDING_SECRET).getCode());
+        if(StringUtils.isNotBlank(token)){
+            SystemDictData systemDictData = systemDictDataBiz.queryByCode(Constants.DINGDING,Constants.DINGDING_TOKEN);
+            if(!Objects.isNull(systemDictData)){
+                systemDictData.setCode(token);
+                systemDictData.setUpdateTime(new Date());
+                systemDictDataService.updateById(systemDictData);
+            }
+        }
+    }
+    /**
+     * 鏇存柊寰俊 ACCESS_TOKEN
+     */
     @Scheduled(fixedDelay = 1000L * 60L )
     public void autoCancelRefunOrder(){
         log.info("=====================寮�濮� 鑷嫊鍙栨秷鏈帹閫侀��娆剧姸鎬佺殑閫�娆惧崟鐘舵��=======================");
@@ -153,4 +187,12 @@
     }
 
 
+    @Scheduled(fixedDelay = 1000L * 60L )
+    public void autCancelGoodsOrder(){
+        log.info("=====================寮�濮� 鑷嫊鍙栨秷鏈敮浠樿鍗曠姸鎬�=======================");
+        goodsorderService.autoCancelRefunOrder();;
+        log.info("=====================缁撴潫 鑷嫊鍙栨秷鏈敮浠樿鍗曠姸鎬�=======================");
+    }
+
+
 }

--
Gitblit v1.9.3