Commit 0f1ec912 by wenyang Committed by akexiu

支持经纪人录入的自我介绍,支持同时AGMS与赢家平台的返回bioIntro、bioIntroTwo

parent 0f002b71
...@@ -3779,7 +3779,7 @@ public class PractitionerServiceImpl implements com.yd.api.practitioner.service. ...@@ -3779,7 +3779,7 @@ public class PractitionerServiceImpl implements com.yd.api.practitioner.service.
Long practitionerId = requestVO.getPractitionerId(); Long practitionerId = requestVO.getPractitionerId();
AclPractitioner practitioner = aclPractitionerDALService.findPractitionerById(practitionerId); AclPractitioner practitioner = aclPractitionerDALService.findPractitionerById(practitionerId);
if (settingSave.equalsIgnoreCase("intro")) { if (settingSave.equalsIgnoreCase("intro")) {
practitioner.setBioIntroTwo(requestVO.getBioIntro()); practitioner.setBioIntroTwo(requestVO.getBioIntroTwo());
} else if (settingSave.equalsIgnoreCase("isShow")) { } else if (settingSave.equalsIgnoreCase("isShow")) {
practitioner.setIsNameShow(requestVO.getIsNameShow()); practitioner.setIsNameShow(requestVO.getIsNameShow());
practitioner.setIsMobileShow(requestVO.getIsMobileShow()); practitioner.setIsMobileShow(requestVO.getIsMobileShow());
......
...@@ -18,6 +18,10 @@ public class SettingSaveRequestVO { ...@@ -18,6 +18,10 @@ public class SettingSaveRequestVO {
*/ */
private String bioIntro; private String bioIntro;
/** /**
* 经纪人自我介绍
*/
private String bioIntroTwo;
/**
* 姓名是否显示 0=No=不显示 1=Yes=显示 * 姓名是否显示 0=No=不显示 1=Yes=显示
*/ */
private Integer isNameShow; private Integer isNameShow;
......
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