| | |
| | | |
| | | /** |
| | | * 人员详情 |
| | | * |
| | | *detailuser |
| | | * @param userId 用户id |
| | | * @return 人员详情 |
| | | */ |
| | |
| | | String idCard = sysUserDO.getIdCard(); |
| | | if (!ObjectUtils.isEmpty(idCard)) { |
| | | communityUserInfoVO.setAge(IdCard.IdNOToAge(idCard)); |
| | | communityUserInfoVO.setBirthday(IdCard.birthDay(idCard)); |
| | | communityUserInfoVO.setBirthday(sysUserDO.getBirthday()); |
| | | communityUserInfoVO.setIdCard(idCard); |
| | | } |
| | | communityUserInfoVO.setCreateAt(sysUserDO.getCreateAt()); |
| | | communityUserInfoVO.setCardPhotoBack(sysUserDO.getCardPhotoBack()); |
| | | communityUserInfoVO.setCardPhotoFront(sysUserDO.getCardPhotoFront()); |
| | | communityUserInfoVO.setFamilyBook(sysUserDO.getFamilyBook()); |
| | | communityUserInfoVO.setName(sysUserDO.getName()); |
| | | String phone = sysUserDO.getPhone(); |
| | | communityUserInfoVO.setPhone(phone); |