Commit b5954583 by wenyang

电子报聘链接优化

parent c8985adb
...@@ -662,6 +662,8 @@ public class PractitionerHiringServiceImpl implements PractitionerHiringService ...@@ -662,6 +662,8 @@ public class PractitionerHiringServiceImpl implements PractitionerHiringService
if (null != hiringBasicInfo.getPractitionerPotentialId()) { if (null != hiringBasicInfo.getPractitionerPotentialId()) {
AclPractitionerPotential aclPractitionerPotential = aclPractitionerPotentialMapper.selectByPrimaryKey(hiringBasicInfo.getPractitionerPotentialId()); AclPractitionerPotential aclPractitionerPotential = aclPractitionerPotentialMapper.selectByPrimaryKey(hiringBasicInfo.getPractitionerPotentialId());
resp.setCustomerId(null != aclPractitionerPotential ? aclPractitionerPotential.getCustomerId() : null); resp.setCustomerId(null != aclPractitionerPotential ? aclPractitionerPotential.getCustomerId() : null);
resp.setMobileNo(aclPractitionerPotential.getMobileNo());
resp.setWechatId(aclPractitionerPotential.getWechatId());
} }
resp.setHiringBasicInfoId(hiringBasicInfoId); resp.setHiringBasicInfoId(hiringBasicInfoId);
resp.setHiringBasicInfo(hiringBasicInfo); resp.setHiringBasicInfo(hiringBasicInfo);
...@@ -669,7 +671,6 @@ public class PractitionerHiringServiceImpl implements PractitionerHiringService ...@@ -669,7 +671,6 @@ public class PractitionerHiringServiceImpl implements PractitionerHiringService
resp.setHiringWorkingExperienceList(hiringWorkingExperienceList); resp.setHiringWorkingExperienceList(hiringWorkingExperienceList);
resp.setHiringPersonalStatementsList(hiringPersonalStatementsList); resp.setHiringPersonalStatementsList(hiringPersonalStatementsList);
resp.setHiringContractTermsConfirmsList(hiringContractTermsConfirmsList); resp.setHiringContractTermsConfirmsList(hiringContractTermsConfirmsList);
} catch (Exception e) { } catch (Exception e) {
e.printStackTrace(); e.printStackTrace();
resp.setCommonResult(new CommonResult(false, e.getMessage())); resp.setCommonResult(new CommonResult(false, e.getMessage()));
......
...@@ -13,6 +13,15 @@ public class QueryWholeInfoResponseVO { ...@@ -13,6 +13,15 @@ public class QueryWholeInfoResponseVO {
*/ */
private Long customerId; private Long customerId;
/** /**
* 从业人员电话
*/
private String mobileNo;
/**
* 从业人员微信号
*/
private String wechatId;
/**
* 经纪人基本信息id ag_acl_practitioner_hiring_basic_info.id * 经纪人基本信息id ag_acl_practitioner_hiring_basic_info.id
*/ */
private Long hiringBasicInfoId; private Long hiringBasicInfoId;
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment