This commit is contained in:
sxu 2023-12-09 18:19:08 +08:00
parent ba742a0baf
commit e0fc056b1c
1 changed files with 1 additions and 1 deletions

View File

@ -150,7 +150,7 @@ public class DevInfoServiceImpl implements IDevInfoService
List<DevInfoVo> result = new ArrayList<>(); List<DevInfoVo> result = new ArrayList<>();
for (DevInfoVo devInfoVo : list) { for (DevInfoVo devInfoVo : list) {
for (UserCollect userCollect : userCollectList) { for (UserCollect userCollect : userCollectList) {
if (String.valueOf(devInfoVo.getMaId()).equals(String.valueOf(userCollect.getMaId()))) { if (devInfoVo.getMaId().longValue() == userCollect.getMaId().longValue()) {
result.add(devInfoVo); result.add(devInfoVo);
} }
} }