From 0bb514f42de29164d6ec5f54806d98a881ae0c7f Mon Sep 17 00:00:00 2001 From: jiangping <jp@doumee.com> Date: 星期四, 06 二月 2025 16:55:38 +0800 Subject: [PATCH] jtt808初始化 --- server/platform/src/main/java/com/doumee/task/ScheduleTool.java | 21 ++++++++++++++++++++- 1 files changed, 20 insertions(+), 1 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..a7e0340 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; @@ -88,7 +89,7 @@ @Scheduled(cron = "0/15 * * * * ? ") public void autoRefreshLockStatus() throws Exception { log.info("=====================寮�濮嬪畾鏃跺埛鏂伴獞琛屼腑鐨勬暟鍏呭�兼湭寮�閿佸け璐�======================="); - //memberRidesService.autoRefreshLockStatus(); + memberRidesService.autoRefreshLockStatus(); log.info("=====================缁撴潫瀹氭椂鍒锋柊楠戣涓殑鏁板厖鍊兼湭寮�閿佸け璐�======================="); } @@ -145,6 +146,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("=====================寮�濮� 鑷嫊鍙栨秷鏈帹閫侀��娆剧姸鎬佺殑閫�娆惧崟鐘舵��======================="); -- Gitblit v1.9.3