chenlei1231 2 hari lalu
induk
melakukan
154a94942c

+ 5 - 2
jeecg-module-system/jeecg-system-biz/src/main/java/org/jeecg/modules/xxl/EnquiryEmailSenderJob.java

@@ -3,6 +3,7 @@ package org.jeecg.modules.xxl;
 import cn.hutool.core.collection.CollUtil;
 import cn.hutool.core.date.DateUtil;
 import com.baomidou.mybatisplus.core.conditions.update.UpdateWrapper;
+import com.xxl.job.core.biz.model.ReturnT;
 import com.xxl.job.core.handler.annotation.XxlJob;
 import jakarta.annotation.Resource;
 import java.util.Date;
@@ -31,13 +32,13 @@ public class EnquiryEmailSenderJob {
   @Resource private ISysDictService sysDictService;
 
   @XxlJob("EnquiryEmailSenderJobHandler")
-  public void EnquiryEmailSenderJobHandler() throws Exception {
+  public ReturnT<String> EnquiryEmailSenderJobHandler() {
     log.info("询盘邮件发送 EnquiryEmailSenderJob !  时间:{}", DateUtils.getTimestamp());
 
     String keyName = CommonConstant.ADWEB_PREFIX + this.getClass().getSimpleName();
     if (!adwebRedisUtil.lock(keyName, 60 * 60 * 1000)) {
       log.info("定时任务 {} 正在执行", this.getClass().getSimpleName());
-      return;
+      return ReturnT.FAIL;
     }
 
     try {
@@ -88,5 +89,7 @@ public class EnquiryEmailSenderJob {
     }
 
     adwebRedisUtil.unlock(keyName);
+
+    return ReturnT.SUCCESS;
   }
 }