Lawrence
2021-01-20 9789c55ef944ffdbfd7b2bdaf9d2a210f6572a32
src/main/java/com/genersoft/iot/vmp/storager/IVideoManagerStorager.java
@@ -206,9 +206,14 @@
   void outlineForAllParentPlatform();
   /**
    * 查询通道信息, 不区分设备
    * 查询通道信息,不区分设备(已关联平台或全部)
    */
   PageInfo<ChannelReduce> queryChannelListInAll(int page, int count, String query, Boolean online, Boolean channelType, String parentChannelId);
   PageInfo<ChannelReduce> queryAllChannelList(int page, int count, String query, Boolean online, Boolean channelType, String platformId, Boolean inPlatform);
   /**
    * 查询设备的通道信息
    */
   List<ChannelReduce> queryChannelListInParentPlatform(String platformId);
   /**
@@ -218,4 +223,17 @@
    * @return
    */
   int updateChannelForGB(String platformId, List<ChannelReduce> channelReduces);
   /**
    *  移除上级平台的通道信息
    * @param platformId
    * @param channelReduces
    * @return
    */
   int delChannelForGB(String platformId, List<ChannelReduce> channelReduces);
    DeviceChannel queryChannelInParentPlatform(String platformId, String channelId);
    Device queryVideoDeviceByPlatformIdAndChannelId(String platformId, String channelId);
}