Denny Chen
2022-02-28 6947068a02499b9d1022f9efca5bcf1bdd3f1c70
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
global class Batchif_Attachment501Batch implements Database.Batchable<sObject> {
    public String query;
 
    global Batchif_Attachment501Batch() {
        this.query = query;
    }
 
    global Database.QueryLocator start(Database.BatchableContext bc) {
        return Database.getQueryLocator(query);
    }
 
    global void execute(Database.BatchableContext BC, list<Sobject> scope) {
        
    }
 
    global void finish(Database.BatchableContext BC) {
 
    }
}