客服-提供项目的负责人信息

This commit is contained in:
yss
2024-09-10 13:45:10 +08:00
parent 1f4e01a989
commit 34a57f37f6

View File

@ -1459,10 +1459,11 @@ public class ProjectRecordServiceImpl extends BaseServiceImpl<ProjectRecordMappe
projectInfo.setAppManagerTel(new String(RSAUtil.encryptByPrivateKey(v.getAppManagerTel().getBytes(), rsa_field_pivate_key))); projectInfo.setAppManagerTel(new String(RSAUtil.encryptByPrivateKey(v.getAppManagerTel().getBytes(), rsa_field_pivate_key)));
projectInfo.setOwnerContactId(new String(RSAUtil.encryptByPrivateKey(v.getOwnerContactId().getBytes(), rsa_field_pivate_key))); projectInfo.setOwnerContactId(new String(RSAUtil.encryptByPrivateKey(v.getOwnerContactId().getBytes(), rsa_field_pivate_key)));
projectInfo.setOwnerContactTel(new String(RSAUtil.encryptByPrivateKey(v.getOwnerContactTel().getBytes(), rsa_field_pivate_key))); projectInfo.setOwnerContactTel(new String(RSAUtil.encryptByPrivateKey(v.getOwnerContactTel().getBytes(), rsa_field_pivate_key)));
reList.add(projectInfo);
} catch (Exception e) { } catch (Exception e) {
CommonExceptionEnum.FRAME_EXCEPTION_COMMON_DATA_OTHER_ERROR.customValidName("信息返回失败,请联系招标采购中心",projectIds==null || projectIds.isEmpty()); CommonExceptionEnum.FRAME_EXCEPTION_COMMON_DATA_OTHER_ERROR.customValidName("信息返回失败,请联系招标采购中心",projectIds==null || projectIds.isEmpty());
} }
}); });
return reList; return reList;
} }
} }