LiJinHuan
2024-01-05 462188a2c982b0a8750dfe01692dfd898216bb0c
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
29
30
31
32
33
34
35
36
37
38
39
40
global class ChangeEventHeader {
    global List<String> changedfields;
    global String changeorigin;
    global String changetype;
    global Long commitnumber;
    global Long committimestamp;
    global String commituser;
    global List<String> difffields;
    global String entityname;
    global List<String> nulledfields;
    global List<String> recordids;
    global Integer sequencenumber;
    global String transactionkey;
    global ChangeEventHeader() { }
    global String getChangeOrigin() { }
    global String getChangeType() { }
    global List<String> getChangedFields() { }
    global Long getCommitNumber() { }
    global Long getCommitTimestamp() { }
    global String getCommitUser() { }
    global List<String> getDiffFields() { }
    global String getEntityName() { }
    global List<String> getNulledFields() { }
    global List<String> getRecordIds() { }
    global Integer getSequenceNumber() { }
    global String getTransactionKey() { }
    global void setChangeOrigin(String param0) { }
    global void setChangeType(String param0) { }
    global void setChangedFields(List<String> param0) { }
    global void setCommitNumber(Long param0) { }
    global void setCommitTimestamp(Long param0) { }
    global void setCommitUser(String param0) { }
    global void setDiffFields(List<String> param0) { }
    global void setEntityName(String param0) { }
    global void setNulledFields(List<String> param0) { }
    global void setRecordIds(List<String> param0) { }
    global void setSequenceNumber(Integer param0) { }
    global void setTransactionKey(String param0) { }
 
}