From 2bb847e3b8bdc2692d88ad9df0d4ad54a3ccd890 Mon Sep 17 00:00:00 2001
From: k94314517 <8417338+k94314517@user.noreply.gitee.com>
Date: 星期三, 08 十一月 2023 16:01:20 +0800
Subject: [PATCH] 111

---
 server/platform/src/main/java/com/doumee/task/ScheduleTool.java |   54 +++++++++++++++++++++++++++++++++++++++---------------
 1 files changed, 39 insertions(+), 15 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 ef5de1a..0345b41 100644
--- a/server/platform/src/main/java/com/doumee/task/ScheduleTool.java
+++ b/server/platform/src/main/java/com/doumee/task/ScheduleTool.java
@@ -1,16 +1,23 @@
 package com.doumee.task;
 
 
+import com.alibaba.fastjson.JSONObject;
 import com.doumee.biz.system.SystemDictDataBiz;
 import com.doumee.core.constants.Constants;
 import com.doumee.core.exception.BusinessException;
 import com.doumee.core.utils.DateUtil;
+import com.doumee.core.utils.HttpsUtil;
+import com.doumee.core.wx.WxPayProperties;
 import com.doumee.dao.business.model.Goodsorder;
+import com.doumee.dao.system.model.SystemDictData;
 import com.doumee.service.business.GoodsorderService;
 import com.doumee.service.business.MemberRidesService;
 import com.doumee.service.business.SitesService;
 import com.doumee.service.business.WxBillService;
+import com.doumee.service.system.SystemDictDataService;
 import lombok.extern.slf4j.Slf4j;
+import org.apache.shiro.util.ThreadContext;
+import org.apache.shiro.web.mgt.DefaultWebSecurityManager;
 import org.springframework.beans.factory.annotation.Autowired;
 import org.springframework.scheduling.annotation.EnableScheduling;
 import org.springframework.scheduling.annotation.Scheduled;
@@ -19,6 +26,7 @@
 
 import java.util.Date;
 import java.util.List;
+import java.util.Objects;
 
 /**
  * 瀹氭椂浠诲姟
@@ -31,10 +39,11 @@
 @Slf4j
 public class ScheduleTool {
 
-
-
     @Autowired
     private SystemDictDataBiz systemDictDataBiz;
+
+    @Autowired
+    private SystemDictDataService systemDictDataService;
 
     @Autowired
     private WxBillService wxBillService;
@@ -51,8 +60,7 @@
     /**
      * @throws Exception
      */
-//    @Scheduled(cron = "0 0 11 * * ? ")
-    public void syncStudent() throws Exception {
+    public void getWxBill() throws Exception {
         //鍓嶄竴澶╃殑鏁告摎
         Date ydate = DateUtil.addDaysToDate(new Date(), -1);
         wxBillService.getWxBill(ydate);
@@ -75,17 +83,11 @@
      * 30 绉掑埛鏂颁竴娆�
      * @throws Exception
      */
-//    @Scheduled(cron = "0/30 * * * * ? ")
+    @Scheduled(cron = "0/30 * * * * ? ")
     public void autoRefreshLockStatus() throws Exception {
-<<<<<<< HEAD
-        log.info("=====================寮�濮嬪埛鏂伴獞琛屼腑鐨勬暟鍏呭�兼湭寮�閿佸け璐�=======================");
-        memberRidesService.autoRefreshLockStatus();
-        log.info("=====================寮�濮嬪埛鏂伴獞琛屼腑鐨勬暟鍏呭�兼湭寮�閿佸け璐�=======================");
-=======
         log.info("=====================寮�濮嬪畾鏃跺埛鏂伴獞琛屼腑鐨勬暟鍏呭�兼湭寮�閿佸け璐�=======================");
         memberRidesService.autoRefreshLockStatus();
         log.info("=====================缁撴潫瀹氭椂鍒锋柊楠戣涓殑鏁板厖鍊兼湭寮�閿佸け璐�=======================");
->>>>>>> 50c564c2568e7fb52d8dcbcbebb937a6a8284eeb
     }
 
 
@@ -93,15 +95,37 @@
      * 绔欑偣杞﹁締婊℃灦鐜囬璀�
      * @throws Exception
      */
-<<<<<<< HEAD
     @Scheduled(fixedDelay = 1000L * 60L * 10L)
-=======
-//    @Scheduled(fixedDelay = 1000L * 60L * 3L)
->>>>>>> 50c564c2568e7fb52d8dcbcbebb937a6a8284eeb
     public void siteReserves() throws Exception {
         log.info("=====================寮�濮� 绔欑偣杞﹁締婊℃灦鐜囬璀�=======================");
         sitesService.siteReservesNotice();;
         log.info("=====================缁撴潫 绔欑偣杞﹁締婊℃灦鐜囬璀�=======================");
     }
 
+
+    @Autowired
+    private WxPayProperties wxPayProperties;
+
+    /**
+     * 鏇存柊寰俊 ACCESS_TOKEN
+     */
+    @Scheduled(fixedDelay = 1000L * 60L * 90L)
+    public void updAccessToken(){
+        DefaultWebSecurityManager manager = new DefaultWebSecurityManager();
+        ThreadContext.bind(manager);
+        String appId = wxPayProperties.getAppId();
+        String appSecret = wxPayProperties.getAppSecret();
+        //鐢熸垚寰俊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);
+        JSONObject json = JSONObject.parseObject(response);
+        SystemDictData systemDictData = systemDictDataBiz.queryByCode(Constants.MINI_PROGRAMME,Constants.ACCESS_TOKEN);
+        if(!Objects.isNull(systemDictData)){
+            systemDictData.setCode(json.getString("access_token"));
+            systemDictData.setUpdateTime(new Date());
+            systemDictDataService.updateById(systemDictData);
+        }
+    }
+
+
 }

--
Gitblit v1.9.3