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

This commit is contained in:
yss
2024-09-09 15:36:24 +08:00
parent 37c5ca5e6e
commit 1f4e01a989
2 changed files with 12 additions and 12 deletions

View File

@ -1455,10 +1455,10 @@ public class ProjectRecordServiceImpl extends BaseServiceImpl<ProjectRecordMappe
ProjectInfo projectInfo =new ProjectInfo();
BeanUtils.copyProperties(v,projectInfo);
try {
projectInfo.setAppManagerId(RSAUtil.encryptByPrivateKey(v.getAppManagerId().getBytes(), rsa_field_pivate_key));
projectInfo.setAppManagerTel(RSAUtil.encryptByPrivateKey(v.getAppManagerTel().getBytes(), rsa_field_pivate_key));
projectInfo.setOwnerContactId(RSAUtil.encryptByPrivateKey(v.getOwnerContactId().getBytes(), rsa_field_pivate_key));
projectInfo.setOwnerContactTel(RSAUtil.encryptByPrivateKey(v.getOwnerContactTel().getBytes(), rsa_field_pivate_key));
projectInfo.setAppManagerId(new String(RSAUtil.encryptByPrivateKey(v.getAppManagerId().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.setOwnerContactTel(new String(RSAUtil.encryptByPrivateKey(v.getOwnerContactTel().getBytes(), rsa_field_pivate_key)));
} catch (Exception e) {
CommonExceptionEnum.FRAME_EXCEPTION_COMMON_DATA_OTHER_ERROR.customValidName("信息返回失败,请联系招标采购中心",projectIds==null || projectIds.isEmpty());
}

View File

@ -42,25 +42,25 @@ public class ProjectInfo implements Serializable {
* 招标项目责任人代理机构项目经理id
*/
@ApiModelProperty(value = "招标项目责任人代理机构项目经理id")
private byte[] appManagerId;
private String appManagerId;
/**
* 招标项目责任人(代理机构项目经理,根据当前账号对应人员联系方式自动填入,可修改)
* 招标项目责任人
*/
@ApiModelProperty(value = "招标项目责任人(代理机构项目经理,根据当前账号对应人员联系方式自动填入,可修改)")
@ApiModelProperty(value = "招标项目责任人")
private String appManagerName;
/**
* 招标项目责任人联系方式(代理机构项目经理联系方式,根据当前账号对应人员联系方式自动填入,可修改)
* 招标项目责任人联系方式
*/
@ApiModelProperty(value = "招标项目责任人联系方式(代理机构项目经理联系方式,根据当前账号对应人员联系方式自动填入,可修改)")
private byte[] appManagerTel;
@ApiModelProperty(value = "招标项目责任人联系方式")
private String appManagerTel;
/**
* 采购经理id
*/
@ApiModelProperty(value = "采购经理id")
private byte[] ownerContactId;
private String ownerContactId;
/**
* 采购经理名称
@ -72,6 +72,6 @@ public class ProjectInfo implements Serializable {
* 采购经理联系方式
*/
@ApiModelProperty(value = "采购经理联系方式")
private byte[] ownerContactTel;
private String ownerContactTel;
}