中国算力平台算力登记系统2.0
YZFG
2024-09-30 43dc2996fd2033991539ed35a0429238829a5417
commit | author | age
43dc29 1 package com.odcc.cpzidc.quartz.util;
Y 2
3 import org.quartz.JobExecutionContext;
4 import com.odcc.cpzidc.quartz.domain.SysJob;
5
6 /**
7  * 定时任务处理(允许并发执行)
8  * 
9  * @author ruoyi
10  *
11  */
12 public class QuartzJobExecution extends AbstractQuartzJob
13 {
14     @Override
15     protected void doExecute(JobExecutionContext context, SysJob sysJob) throws Exception
16     {
17         JobInvokeUtil.invokeMethod(sysJob);
18     }
19 }