1
2
3
4
5
6
7
8
public without sharing class SSBackorderBatchSchedule implements Schedulable {
    public void execute(SchedulableContext SC) {
        Database.executeBatch(new SSBackorderBatch(null), 100);
        // chenjingwu Batch整理合并 20240305 start
        Id execBTId = Database.executeBatch(new OppMonthlyRatingBatch(), 100);    
        // chenjingwu Batch整理合并 20240305 end
    }
}