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