紧急联系人和配偶的手机号校验去除

This commit is contained in:
zzk 2023-09-19 17:56:55 +08:00
parent 55c7aadffb
commit a595c76902

View File

@ -205,18 +205,18 @@ public class CustomerInfoCheck {
// return "手机号跟共同申请人手机号重复!";
// }
// }
if(mobileFTSpouse!=null){
String id = mobileFTSpouse.getAttribute("ID").getString();
String certid1 = mobileFTSpouse.getAttribute("certid").getString();// 配偶身份证号
String name = mobileFTSpouse.getAttribute("name").getString();// 配偶名称
// 判断担保人名称和身份证是否与配偶相同 相同则过滤 不同则提示
if(certid1.equals(certid) && name.equals(FULLNAME)){
return "SUCCESS";
}else{
return "手机号跟配偶人手机号重复!";
}
}
// if(mobileFTSpouse!=null){
// String id = mobileFTSpouse.getAttribute("ID").getString();
// String certid1 = mobileFTSpouse.getAttribute("certid").getString();// 配偶身份证号
// String name = mobileFTSpouse.getAttribute("name").getString();// 配偶名称
//
// // 判断担保人名称和身份证是否与配偶相同 相同则过滤 不同则提示
// if(certid1.equals(certid) && name.equals(FULLNAME)){
// return "SUCCESS";
// }else{
// return "手机号跟配偶人手机号重复!";
// }
// }
}
}
}