|
@@ -231,7 +231,7 @@ public class AuthUserInfoService implements IAuthUserInfoService {
|
|
|
|
|
|
List<String> idcards = list.stream().map(item -> item.getIdcard()).collect(Collectors.toList());
|
|
|
|
|
|
- //机构和身份证是否存在校验
|
|
|
+ //身份证是否存在校验
|
|
|
List<String> existIdcards = getExistIdcards(idcards);
|
|
|
if(CollectionUtils.isNotEmpty(existIdcards)) {
|
|
|
String exist = existIdcards.stream().collect(Collectors.joining(","));
|
|
@@ -299,6 +299,7 @@ public class AuthUserInfoService implements IAuthUserInfoService {
|
|
|
AuthOrgInfo authOrgInfo = orgInfoMap.get(item.getOrgCode());
|
|
|
if(null != authOrgInfo) {
|
|
|
item.setOrgName(authOrgInfo.getFullName());
|
|
|
+ item.setOrgId(authOrgInfo.getId());
|
|
|
}
|
|
|
});
|
|
|
//将辅警的人员类型设置到auxiliaryType字段上
|