Merge pull request #492 from mk1990/wvp-28181-2.0
解决海康设备在实时监控模块中无法获取到通道信息
This commit is contained in:
commit
0d1580ff75
@ -315,6 +315,9 @@ public class VideoManagerStorageImpl implements IVideoManagerStorage {
|
|||||||
List<DeviceChannel> all;
|
List<DeviceChannel> all;
|
||||||
if (catalogUnderDevice != null && catalogUnderDevice) {
|
if (catalogUnderDevice != null && catalogUnderDevice) {
|
||||||
all = deviceChannelMapper.queryChannels(deviceId, deviceId, query, hasSubChannel, online);
|
all = deviceChannelMapper.queryChannels(deviceId, deviceId, query, hasSubChannel, online);
|
||||||
|
// 海康设备的parentId是SIP id
|
||||||
|
List<DeviceChannel> deviceChannels = deviceChannelMapper.queryChannels(deviceId, sipConfig.getId(), query, hasSubChannel, online);
|
||||||
|
all.addAll(deviceChannels);
|
||||||
}else {
|
}else {
|
||||||
all = deviceChannelMapper.queryChannels(deviceId, null, query, hasSubChannel, online);
|
all = deviceChannelMapper.queryChannels(deviceId, null, query, hasSubChannel, online);
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user