| | |
| | | public String Request; // 委托事项 |
| | | public String RequestDetail; // 委托事项详细 |
| | | public String ApproverID; // 审核人员员工编码 |
| | | public String ContactWayEncrypted; //联系方式密文 for pi |
| | | //public String ContactWayEncrypted; //联系方式密文 for pi //zhj新方案改造 2022-12-07 |
| | | public String DataId; //AWS 加密凭据 |
| | | public Integer ContactType; //联系方式 1为邮箱 2为电话 |
| | | } |
| | |
| | | //联系方式的值是否包含@来判断是邮箱还是电话 |
| | | if (geData.ContactType==1) { |
| | | inquiry.Phone__c = ''; //电话 |
| | | inquiry.Phone_Encrypted__c=''; //电话密文 add 20220214 |
| | | //inquiry.Phone_Encrypted__c=''; //电话密文 add 20220214 //zhj新方案改造 2022-12-07 |
| | | inquiry.Email__c = geData.ContactWay; //邮箱 |
| | | inquiry.Email_Encrypted__c =geData.ContactWayEncrypted; //邮箱密文 add 20220214 |
| | | //inquiry.Email_Encrypted__c =geData.ContactWayEncrypted; //邮箱密文 add 20220214 //zhj新方案改造 2022-12-07 |
| | | |
| | | } else { |
| | | inquiry.Phone__c = geData.ContactWay; |
| | | inquiry.Email__c = ''; |
| | | inquiry.Email_Encrypted__c = ''; //邮箱密文 add 20220214 |
| | | inquiry.Phone_Encrypted__c=geData.ContactWayEncrypted; //电话密文 add 20220214 |
| | | //inquiry.Email_Encrypted__c = ''; //邮箱密文 add 20220214 //zhj新方案改造 2022-12-07 |
| | | //inquiry.Phone_Encrypted__c=geData.ContactWayEncrypted; //电话密文 add 20220214 //zhj新方案改造 2022-12-07 |
| | | } |
| | | |
| | | if (String.isNotBlank(inqInfoMap.get(geData.InquiryNo))) { |