|
@@ -451,7 +451,7 @@ public class DeviceInfoServiceImpl extends ServiceImpl<DeviceInfoMapper, DeviceI
|
|
queryWrapper.select(columnList.stream().toArray(String[]::new));
|
|
queryWrapper.select(columnList.stream().toArray(String[]::new));
|
|
}
|
|
}
|
|
if (CollUtil.isNotEmpty(deviceIds)) {
|
|
if (CollUtil.isNotEmpty(deviceIds)) {
|
|
- queryWrapper.eq(LambdaUtils.getUnderlineCaseName(DeviceInfo::getDeviceId), deviceIds);
|
|
|
|
|
|
+ queryWrapper.in(LambdaUtils.getUnderlineCaseName(DeviceInfo::getDeviceId), deviceIds);
|
|
}
|
|
}
|
|
return R.ok(copy(DeviceInfoDto.Vo.class, list(queryWrapper)));
|
|
return R.ok(copy(DeviceInfoDto.Vo.class, list(queryWrapper)));
|
|
}
|
|
}
|