|
@ -1734,33 +1734,6 @@ public class IcResiUserServiceImpl extends BaseServiceImpl<IcResiUserDao, IcResi |
|
|
return baseDao.dynamicQuery(customerId, resultTableName, conditions, map.get("finalSubTables"), showSqlColumns, currentStaffAgencyId, staffOrgPath, map.get("groupByTables")); |
|
|
return baseDao.dynamicQuery(customerId, resultTableName, conditions, map.get("finalSubTables"), showSqlColumns, currentStaffAgencyId, staffOrgPath, map.get("groupByTables")); |
|
|
} |
|
|
} |
|
|
|
|
|
|
|
|
@Override |
|
|
|
|
|
@Transactional(rollbackFor = Exception.class) |
|
|
|
|
|
public String updateImage(RentTenantFormDTO formDTO) { |
|
|
|
|
|
String resiUserId = ""; |
|
|
|
|
|
IcResiUserDTO userDTO = baseDao.getResiUserByIdCard(formDTO.getIdCard(), formDTO.getCustomerId()); |
|
|
|
|
|
if (null != userDTO) { |
|
|
|
|
|
resiUserId = userDTO.getId(); |
|
|
|
|
|
// 插入附件头像(只有一张)
|
|
|
|
|
|
List<IcResiUserAttachmentDTO> images = formDTO.getImages(); |
|
|
|
|
|
images.forEach(item -> item.setUserId(userDTO.getId())); |
|
|
|
|
|
images.forEach(item-> icResiUserAttachmentService.save(item)); |
|
|
|
|
|
} else if (NumConstant.ONE_STR.equals(formDTO.getType())) { |
|
|
|
|
|
// 如果是新增的租客,需要新增一条信息,不存在的房东就不管了
|
|
|
|
|
|
IcResiUserEntity entity = ConvertUtils.sourceToTarget(formDTO.getUser(), IcResiUserEntity.class); |
|
|
|
|
|
insert(entity); |
|
|
|
|
|
resiUserId = entity.getId(); |
|
|
|
|
|
|
|
|
|
|
|
// 新增用户后保存头像信息
|
|
|
|
|
|
List<IcResiUserAttachmentDTO> images = formDTO.getImages(); |
|
|
|
|
|
images.forEach(item -> item.setUserId(entity.getId())); |
|
|
|
|
|
images.forEach(item -> icResiUserAttachmentService.save(item)); |
|
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
return resiUserId; |
|
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
@Override |
|
|
@Override |
|
|
public RentTenantDataResultDTO getRentResiUserInfo(RentTenantDataFormDTO formDTO) { |
|
|
public RentTenantDataResultDTO getRentResiUserInfo(RentTenantDataFormDTO formDTO) { |
|
|
IcResiUserEntity entity = baseDao.selectById(formDTO.getUserId()); |
|
|
IcResiUserEntity entity = baseDao.selectById(formDTO.getUserId()); |
|
|