提交 5f1757a4 编写于 作者:  Peijun.zhao's avatar Peijun.zhao

Merge branch 'hotfix-yizhixing-0611' into 'release'

手机号无此用户

一致性兼容test环境错误数据

See merge request !30
流水线 #26563 已失败 于阶段
in 0 second
...@@ -263,7 +263,12 @@ public class LoginServiceImpl implements LoginService { ...@@ -263,7 +263,12 @@ public class LoginServiceImpl implements LoginService {
Integer acctId = accountInfoEntity.getId(); Integer acctId = accountInfoEntity.getId();
int productType = request.getProductType(); int productType = request.getProductType();
int sourceType = request.getSourceType(); int sourceType = request.getSourceType();
Doctor doctorInfo = doctorInfoMapper.getDoctorInfoByMobile(encrypt); Doctor doctorInfo = null;
doctorInfo = doctorInfoMapper.getDoctorInfoByMobile(encrypt);
if(null == doctorInfo){
logger.error("此手机号无用户:{}",mobile);
intactUtil.sendIntact(batchNo,"pwdLoginCorrect",com.pica.cloud.foundation.completeness.contract.constants.CommonConstants.INTACT_CONTENT_LOG_STATUS_3,"request:"+ JSON.toJSONString(request)+",+mobile 此手机号无用户:"+mobile+",encrypt:"+",accountInfoEntity:"+JSON.toJSONString(accountInfoEntity));
}
Integer userId = 0; Integer userId = 0;
if (productType == AccountTypeEnum.PRODUCT_TYPE_DOCTOR.getCode()) { if (productType == AccountTypeEnum.PRODUCT_TYPE_DOCTOR.getCode()) {
userId = doctorInfo.getId(); userId = doctorInfo.getId();
......
Markdown 格式
0% or
您添加了 0 到此讨论。请谨慎行事。
先完成此消息的编辑!
想要评论请 注册