sunxia
2022-03-11 9909cdba659d1933abb3c63e9cc5dc7e719f90e6
1
2
3
4
5
6
7
8
9
global class RepairToPDFSchedule implements Schedulable {
    global void execute(SchedulableContext sc) {
        Database.executeBatch(new RepairToPDFBatch(),100);
        // System.schedule('NFM402Schedule每小时的第5分钟执行一次','0 5 * * * ?', new RepairToPDFSchedule());
        // System.schedule('NFM402Schedule每小时的第20分钟执行一次','0 20 * * * ?', new RepairToPDFSchedule());
        // System.schedule('NFM402Schedule每小时的第35分钟执行一次','0 35 * * * ?', new RepairToPDFSchedule());
        // System.schedule('NFM402Schedule每小时的第50分钟执行一次','0 50 * * * ?', new RepairToPDFSchedule());
    }
}