|
|
@ -15,6 +15,7 @@ import com.hnac.hzims.scheduled.service.basic.IImsCertificatetNoticeService; |
|
|
|
import com.hnac.hzims.scheduled.service.basic.IImsCertificatetService; |
|
|
|
import com.hnac.hzims.scheduled.service.basic.IImsCertificatetService; |
|
|
|
import com.hnac.hzims.scheduled.service.basic.IImsPresonManagementService; |
|
|
|
import com.hnac.hzims.scheduled.service.basic.IImsPresonManagementService; |
|
|
|
import com.xxl.job.core.biz.model.ReturnT; |
|
|
|
import com.xxl.job.core.biz.model.ReturnT; |
|
|
|
|
|
|
|
import com.xxl.job.core.handler.annotation.XxlJob; |
|
|
|
import lombok.extern.slf4j.Slf4j; |
|
|
|
import lombok.extern.slf4j.Slf4j; |
|
|
|
import org.apache.commons.lang.StringUtils; |
|
|
|
import org.apache.commons.lang.StringUtils; |
|
|
|
import org.junit.jupiter.api.Test; |
|
|
|
import org.junit.jupiter.api.Test; |
|
|
@ -35,6 +36,8 @@ import java.text.SimpleDateFormat; |
|
|
|
import java.util.*; |
|
|
|
import java.util.*; |
|
|
|
import java.util.stream.Collectors; |
|
|
|
import java.util.stream.Collectors; |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
import static com.hnac.hzims.operational.main.constant.MainConstants.CERTIFICATET_DEAD_LINE_NOTICE; |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
/** |
|
|
|
/** |
|
|
|
* 排班到期定时任务通知 |
|
|
|
* 排班到期定时任务通知 |
|
|
@ -63,12 +66,12 @@ public class BasicScheduledTask { |
|
|
|
/** |
|
|
|
/** |
|
|
|
* realId刷新 |
|
|
|
* realId刷新 |
|
|
|
*/ |
|
|
|
*/ |
|
|
|
// @XxlJob(CERTIFICATET_DEAD_LINE_NOTICE)
|
|
|
|
@XxlJob(CERTIFICATET_DEAD_LINE_NOTICE) |
|
|
|
@Scheduled(cron = "0/40 * * * * ? ") |
|
|
|
// @Scheduled(cron = "0/40 * * * * ? ")
|
|
|
|
// public ReturnT<String> certificatetDeadLineNotice(String param) throws ParseException {
|
|
|
|
public ReturnT<String> certificatetDeadLineNotice(String param) throws ParseException { |
|
|
|
public ReturnT<String> certificatetDeadLineNotice() throws ParseException { |
|
|
|
// public ReturnT<String> certificatetDeadLineNotice() throws ParseException {
|
|
|
|
|
|
|
|
// String param="";
|
|
|
|
Date endTime = new Date(); |
|
|
|
Date endTime = new Date(); |
|
|
|
String param=""; |
|
|
|
|
|
|
|
if (StringUtils.isNotBlank(param)) { |
|
|
|
if (StringUtils.isNotBlank(param)) { |
|
|
|
endTime = new SimpleDateFormat("yyyy-MM-dd").parse(param); |
|
|
|
endTime = new SimpleDateFormat("yyyy-MM-dd").parse(param); |
|
|
|
} |
|
|
|
} |
|
|
|