1
2
3
4
5
6
7
8
9
10
global class InsReToMTBSchedule implements Schedulable {
    global void execute(SchedulableContext sc) {
        //MyBatchClass b = new MyBatchClass();
        //database.executebatch(b);
        Id execBTId = Database.executeBatch(new InsReToMaintenanceBatch(), 10);
        // chenjingwu Batch整理合并 20240305 start
        Id execBTId1 = Database.executeBatch(new CurrentPeriodPaymentAmountBatch(),100);
        // chenjingwu Batch整理合并 20240305 end
    }
}