|
@@ -325,14 +325,14 @@ public class TaRecommendCustomerServiceImpl extends ServiceImpl<TaRecommendCusto
|
325
|
325
|
TaPerson conPerson = taPersonMapper.selectById(result.get(0).getRealtyConsultant());
|
326
|
326
|
if (null != conPerson){
|
327
|
327
|
if(params.getString("realtyConsultant").equals(conPerson.getPersonId())){
|
328
|
|
- ResponseBean.success("bound");
|
|
328
|
+ return ResponseBean.success("bound");
|
329
|
329
|
}
|
330
|
330
|
conName = conPerson.getName();
|
331
|
331
|
}else {
|
332
|
332
|
TaUser conUser = userService.getById(result.get(0).getRealtyConsultant());
|
333
|
333
|
if(null != conUser){
|
334
|
334
|
if(params.getString("realtyConsultant").equals(conUser.getUserId().toString())){
|
335
|
|
- ResponseBean.success("bound");
|
|
335
|
+ return ResponseBean.success("bound");
|
336
|
336
|
}
|
337
|
337
|
conName = conUser.getUserName();
|
338
|
338
|
|