完成向上级联->点播--002

This commit is contained in:
panlinlin
2021-01-15 18:22:57 +08:00
parent e09e541c82
commit 1b44ba3367
8 changed files with 210 additions and 56 deletions

View File

@@ -234,4 +234,6 @@ public interface IVideoManagerStorager {
DeviceChannel queryChannelInParentPlatform(String platformId, String channelId);
Device queryVideoDeviceByPlatformIdAndChannelId(String platformId, String channelId);
}

View File

@@ -335,4 +335,9 @@ public class VideoManagerStoragerImpl implements IVideoManagerStorager {
DeviceChannel channel = patformChannelMapper.queryChannelInParentPlatform(platformId, channelId);
return channel;
}
@Override
public Device queryVideoDeviceByPlatformIdAndChannelId(String platformId, String channelId) {
return null;
}
}