Commit 8b4ec9c7 authored by yexiong.wang's avatar yexiong.wang

edit

parent 990f8ec7
......@@ -280,8 +280,12 @@ public class VccServiceImpl implements IVccService {
if (StringUtils.isNotBlank(query.getUserId())){
log.info("userSdk={}",userSdk);
UserSysResult<XUser> userByUserId = userSdk.getService().findUserByUserId(Long.getLong(query.getUserId()));
if (userByUserId == null || !userByUserId.isSuccess() || userByUserId.getData() == null) {
log.info("queryApplyRecord | 查询用户中心失败");
}else {
phone = userByUserId.getData().getPhoneNo();
}
}
if (StringUtils.isNotBlank(query.getPhone())){
phone = query.getPhone();
}
......
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