buli
2023-06-05 0f44cb1a0b7b36860e9ce81c1eac9e395d87f0b4
1
2
3
4
5
6
7
8
9
global class ConsumAutoSelectBatchSchedule implements Schedulable {
    global void execute(SchedulableContext sc) {
        ConsumAutoSelectBatch.run();
        // 2023/04/19  add SummaryContractFMBatch
        Id execBTId = Database.executeBatch(new SummaryContractFMBatch(),100);
        //2023/05/11 add SummaryConsumptionRateBatch
        Id execConsumptionRateId = Database.executeBatch(new SummaryConsumptionRateBatch(),100);
    }
}