|
@@ -111,6 +111,7 @@ public class IdentityAuthenticationInfoServiceImpl extends ServiceImpl<IdentityA
|
|
|
}
|
|
|
IdentityAuthenticationInfo identityAuthenticationInfo1 = this.selectOne(new EntityWrapper<IdentityAuthenticationInfo>()
|
|
|
.eq("customer_phone", identityAuthenticationInfo.getCustomerPhone())
|
|
|
+ .eq("customer_type_flag", identityAuthenticationInfo2.getCustomerTypeFlag())
|
|
|
.eq("delete_flag", "0"));
|
|
|
//查询手机号存在,将其覆盖
|
|
|
if (identityAuthenticationInfo1 != null) {
|
|
@@ -151,6 +152,7 @@ public class IdentityAuthenticationInfoServiceImpl extends ServiceImpl<IdentityA
|
|
|
List<IdentityAuthenticationInfo> identityAuthenticationInfoList =
|
|
|
this.selectList(new EntityWrapper<IdentityAuthenticationInfo>()
|
|
|
.eq(IdentityAuthenticationInfo.QueryFiles.CUSTOMER_PHONE, identityAuthenticationInfo.getCustomerPhone())
|
|
|
+ .eq("customer_type_flag", identityAuthenticationInfo.getCustomerTypeFlag())
|
|
|
.eq(IdentityAuthenticationInfo.QueryFiles.DELETE_FLAG, NumberConstant.CONSTANT0));
|
|
|
//同一手机号再次被认证
|
|
|
if (identityAuthenticationInfoList.size() > 0) {
|