binxie
2024-01-16 1b08402678deb31bba4a347bfd388eba8360cbc1
1
2
3
4
5
6
7
8
/**
 * 拜访次数(当月日报拜访询价) 定时任务启动器
 */
public without sharing class MonthlyVisitBatch1Schedule implements Schedulable {
    public void execute(SchedulableContext SC) {
        Database.executeBatch(new MonthlyVisitBatch1(), 100);
    }
}