1
2
3
4
5
6
7
8
9
10
11
12
| /**
| * 众成接口推送定时任务启动器
| * Created:2023-09-25 shashiming
| */
| public without sharing class NFM512Schedule implements Schedulable {
| public void execute(SchedulableContext SC) {
| // Date testDate = Date.newInstance(2023, 10, 01);
| // Date testDate1 = Date.newInstance(2023, 10, 12);
| // Database.executeBatch(new NFM512Batch(testDate,testDate1), 100);
| Database.executeBatch(new NFM512Batch(), 100);
| }
| }
|
|