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
global class IntegrationLog {
    global IntegrationLog() { }
    global Object clone() { }
    global String getAppId() { }
    global String getAppType() { }
    global String getChangeType() { }
    global String getChannel() { }
    global Integer getDate() { }
    global String getReason() { }
    global String getResolution() { }
    global String getRssFeedChangeType() { }
    global String getRssFeedTitle() { }
    global String getRssFeedUrl() { }
    global String getScope() { }
    global String getServiceId() { }
    global String getServiceType() { }
    global String getUserId() { }
    global String getUserName() { }
    global Boolean isRssFeed() { }
    global void setAppId(String appId) { }
    global void setAppType(String appType) { }
    global void setChangeType(String changeType) { }
    global void setChannel(String channel) { }
    global void setDate(Integer dateValue) { }
    global void setReason(String reason) { }
    global void setResolution(String resolution) { }
    global void setRssFeed(Boolean rssFeed) { }
    global void setRssFeedChangeType(String rssFeedChangeType) { }
    global void setRssFeedTitle(String rssFeedTitle) { }
    global void setRssFeedUrl(String rssFeedUrl) { }
    global void setScope(String scope) { }
    global void setServiceId(String serviceId) { }
    global void setServiceType(String serviceType) { }
    global void setUserId(String userId) { }
    global void setUserName(String userName) { }
    global String toString() { }
 
}