中国算力平台算力登记系统2.0
yanzhaofeige
8 days ago d16b55507ee921564c75032e46759bbea1b77455
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 }