|
|
@ -594,14 +594,15 @@ public class CustomerStaffServiceImpl extends BaseServiceImpl<CustomerStaffDao, |
|
|
|
//查找工作人员信息
|
|
|
|
//最近一次登陆的而网格、人员信息、权限
|
|
|
|
ExtStaffInfoResultDTO result = baseDao.selectStaffInfoExt(staffParam.getStaffId()); |
|
|
|
result.setUserId(staffParam.getStaffId()); |
|
|
|
if(null != result) { |
|
|
|
result.setUserId(staffParam.getStaffId()); |
|
|
|
Result<ExtStaffInfoResultDTO> govOrgResult = |
|
|
|
govOrgOpenFeignClient.staffInfoExt(result); |
|
|
|
if(govOrgResult.success() && null != govOrgResult.getData()){ |
|
|
|
return govOrgResult.getData(); |
|
|
|
} |
|
|
|
} |
|
|
|
log.warn("com.epmet.service.impl.CustomerStaffServiceImpl.extStaffInfo,根据传入的用户Id未找到对应的工作人员,传参:{}",JSON.toJSONString(staffParam)); |
|
|
|
return null; |
|
|
|
} |
|
|
|
|
|
|
|