|
|
@ -1629,7 +1629,7 @@ public class IcResiUserServiceImpl extends BaseServiceImpl<IcResiUserDao, IcResi |
|
|
|
List<OwnerRelationResultDTO.UserListBean> userList=new ArrayList<>(); |
|
|
|
for(IcResiUserEntity item:resiUserList){ |
|
|
|
// 成员里排除户主
|
|
|
|
if(!result.getOwnerUserId().equals(item.getId())){ |
|
|
|
if (null == result.getOwnerUserId() || !result.getOwnerUserId().equals(item.getId())) { |
|
|
|
OwnerRelationResultDTO.UserListBean bean = new OwnerRelationResultDTO.UserListBean(); |
|
|
|
bean.setUserId(item.getId()); |
|
|
|
bean.setUserName(item.getName()); |
|
|
|