Browse Source

Merge branch 'hotfix/ResidentClient_bug' of http://121.42.41.42:7070/r/esua-epdc-cloud into hotfix/ResidentClient_bug

feature/dangjian
weikai 5 years ago
parent
commit
020180c0e5
  1. 4
      esua-epdc/epdc-module/epdc-api/epdc-api-server/src/main/java/com/elink/esua/epdc/controller/ApiActUserRelationController.java

4
esua-epdc/epdc-module/epdc-api/epdc-api-server/src/main/java/com/elink/esua/epdc/controller/ApiActUserRelationController.java

@ -79,6 +79,10 @@ public class ApiActUserRelationController {
String identityNo = epdcUserInfoResultDTO.getIdentityNo(); String identityNo = epdcUserInfoResultDTO.getIdentityNo();
if ("".equals(identityNo)) {
// 身份证号码为空,需要重新认证志愿者
return isVolunteer;
}
String identityNoVerification = IdentityNoUtils.IdentityNoVerification(identityNo); String identityNoVerification = IdentityNoUtils.IdentityNoVerification(identityNo);
if (StringUtils.isNotBlank(identityNoVerification)) { if (StringUtils.isNotBlank(identityNoVerification)) {
return new Result().error(identityNoVerification); return new Result().error(identityNoVerification);

Loading…
Cancel
Save