fix
This commit is contained in:
parent
ba742a0baf
commit
e0fc056b1c
|
|
@ -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);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue