高章伟
2022-02-24 2aa8da8af66aa8ae00f25831aed6bb0364176e7b
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
global class DeleteSObjectBatch implements Database.Batchable<sObject>, Database.Stateful{
    ////删除数据bacth 精琢技术 wql 2021/09/10 start
    public String query;
 
    global DeleteSObjectBatch(String sObjectName){
        this.query = 'select Id from '+sObjectName;
    }
 
    global DeleteSObjectBatch(String sObjectName,String whereName){
        this.query = 'select Id from '+sObjectName+' where '+whereName;
    }
 
    global Database.QueryLocator start(Database.BatchableContext bc) {
        system.debug('sql:'+query);
        return Database.getQueryLocator(query);
    }
 
    global void execute(Database.BatchableContext BC, list<Sobject> scope) {
        if(scope.size()>0){
            delete scope;
        }
    }
    global void finish(Database.BatchableContext BC) {
        
    }
    //删除数据bacth 精琢技术 wql 2021/09/10 end
 
}