Thhto
2022-03-24 9a4a0f63876b90b9286663cfc193e00ce9e40985
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());
    }
}