测试用户
2023-04-13 43393f2bb11cbf9e6af40077bbc5284660e8a754
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
41
42
43
44
45
46
47
package com.deloitte.system.request;
 
import lombok.AllArgsConstructor;
import lombok.Data;
import lombok.NoArgsConstructor;
 
@Data
@AllArgsConstructor
@NoArgsConstructor
public class SFMessageVo {
    private String Name;
    private String ALL_MEMBER_NAME__c;
    private String ALL_MEMBER_TYPE__c;
    private String ALL_MEMBER__c;
    private String BCC__c;
    private String CC__c;
    private String FROM__c;
    private String MESSAGE__c;
    private String RECIPIENT__c;
    private String RECORD__c;
    private String RECORD_TYPE__c;
    private String SUBJECTCOPY__c;
    private String SUBJECT__c;
    private String TYPE__c;
    private String bccName__c;
    private String ccName__c;
    private String toName__c;
    private String AWS_Data_Id__c;
    private String DATE__c;
 
    private String ALL_MEMBER_NAME_Encrypted__c;
    private String ALL_MEMBER_Encrypted__c;
    private String BCC_Encrypted__c ;
    private String CC_Encrypted__c;
    private String FROM_Encrypted__c;
    private String RECIPIENT_Encrypted__c;
    private String bccName_Encrypted__c;
    private String ccName_Encrypted__c;
    private String toName_Encrypted__c;
 
    private String SWO__c;
    private String Quotes__c;
    private String CaseF__c;
 
    private String EMAIL_SENT__c;
 
}