高章伟
2022-03-24 6527332c9c0cf2b3c5aa153f5165d56ceb5047be
1
2
3
4
5
6
7
8
9
10
11
12
13
//create by rentx 2020-11-09 
global class AssetUpdateLastContractSchedule implements Schedulable {
    global void execute(SchedulableContext sc) {   
        // 2021-03-08  mzy  WLIG-BYHD79  SFDC环境batch合并调查  start  
        //Database.executeBatch(new AssetUpdateLastContractbatch(),100);
        Database.executeBatch(new AssetUpdateLastContractbatch(true),100);
        // 2021-03-08  mzy  WLIG-BYHD79  SFDC环境batch合并调查  end
 
        //每天0点执行一次
        // System.schedule('AssetUpdateLastContractbatch每天执行一次','0 0 0 * * ?', new AssetUpdateLastContractbatch());
 
    }
}