puzhibing
2023-03-15 79962435853baf5a28e08461f46a831fffa1a4b0
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
package com.stylefeng.guns.modular.system.util.task;
 
import java.util.Map;
 
import org.quartz.SchedulerException;
 
import com.google.common.collect.ImmutableMap;
 
public class QuartzTest {
 
    public static void main(String[] args) throws SchedulerException {
        Map<String, ? extends Object> maps =  ImmutableMap
                .of("id", 1) ;
        //QuartzManager.addJob(ActivityStartJob.class, (ActivityStartJob.FROZEN_JOB_NAME_PREFIX+1).toUpperCase(), TimeJobType.ACTIVITYSTART, new Date() , maps);
 
    }
    
    
}