|
|
|
@ -342,7 +342,9 @@ public class WorkActUserServiceImpl implements WorkActUserService { |
|
|
|
if (StringUtils.isNotBlank(userBaseInfo.getIdNum())) { |
|
|
|
resultDTO.setIdNum(userBaseInfo.getIdNum()); |
|
|
|
} |
|
|
|
resultDTO.setAddress(userBaseInfo.getStreet()+userBaseInfo.getDistrict()+userBaseInfo.getBuildingAddress()); |
|
|
|
String address = userBaseInfo.getStreet() + userBaseInfo.getDistrict() + userBaseInfo.getBuildingAddress(); |
|
|
|
address = address.replaceAll(StrConstant.NULL_STR, StrConstant.EPMETY_STR); |
|
|
|
resultDTO.setAddress(address); |
|
|
|
} |
|
|
|
resultDTO.setSignUpTime(actUserRelationDTO.getCreatedTime()); |
|
|
|
/** |
|
|
|
|