panlinlin
2021-01-15 cf8a22f50b81fa30abaa518bdce660cd65deabea
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,14 @@
    * @return
    */
   int updateChannelForGB(String platformId, List<ChannelReduce> channelReduces);
   /**
    *  移除上级平台的通道信息
    * @param platformId
    * @param channelReduces
    * @return
    */
   int delChannelForGB(String platformId, List<ChannelReduce> channelReduces);
}