liuyn
2024-03-11 a87f1c3df03078814ee97ad0c8ac200a232419e9
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);
    }
}