liuyn
2024-03-11 a87f1c3df03078814ee97ad0c8ac200a232419e9
1
2
3
4
5
6
7
8
9
global class EquipmentRepairBatchSchedule implements Schedulable {
    global void execute(SchedulableContext sc) {
        Id execBTId5 = Database.executebatch(new AssetWhereabouts(),20);
        // 20230307询价2期Batch增加入Schedule
        Id execBTId1 = Database.executebatch(new EquipmentRepairBatch(),10);
        //20230320 询价2期Item Batch增加入Schedule
        Id execBTId1Item = Database.executebatch(new EquipmentRepairItemBatch(),10);
    }
}