高章伟
2022-02-18 8b5f4c6c281cfa548f92de52c8021e37aa81901e
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());
    }
}