Commit 232a5106 by jianan

Merge branch 'dev_20221018' into dev

parents 5791b5bd b5954583
......@@ -662,6 +662,8 @@ public class PractitionerHiringServiceImpl implements PractitionerHiringService
if (null != hiringBasicInfo.getPractitionerPotentialId()) {
AclPractitionerPotential aclPractitionerPotential = aclPractitionerPotentialMapper.selectByPrimaryKey(hiringBasicInfo.getPractitionerPotentialId());
resp.setCustomerId(null != aclPractitionerPotential ? aclPractitionerPotential.getCustomerId() : null);
resp.setMobileNo(aclPractitionerPotential.getMobileNo());
resp.setWechatId(aclPractitionerPotential.getWechatId());
}
resp.setHiringBasicInfoId(hiringBasicInfoId);
resp.setHiringBasicInfo(hiringBasicInfo);
......@@ -669,7 +671,6 @@ public class PractitionerHiringServiceImpl implements PractitionerHiringService
resp.setHiringWorkingExperienceList(hiringWorkingExperienceList);
resp.setHiringPersonalStatementsList(hiringPersonalStatementsList);
resp.setHiringContractTermsConfirmsList(hiringContractTermsConfirmsList);
} catch (Exception e) {
e.printStackTrace();
resp.setCommonResult(new CommonResult(false, e.getMessage()));
......
......@@ -13,6 +13,15 @@ public class QueryWholeInfoResponseVO {
*/
private Long customerId;
/**
* 从业人员电话
*/
private String mobileNo;
/**
* 从业人员微信号
*/
private String wechatId;
/**
* 经纪人基本信息id ag_acl_practitioner_hiring_basic_info.id
*/
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