package com.genersoft.iot.vmp.service; import com.alibaba.fastjson.JSONObject; import com.genersoft.iot.vmp.gb28181.bean.GbStream; import com.genersoft.iot.vmp.media.zlm.dto.StreamProxyItem; import com.genersoft.iot.vmp.media.zlm.dto.StreamPushItem; import com.github.pagehelper.PageInfo; import java.util.List; public interface IStreamPushService { List handleJSON(String json); /** * 将应用名和流ID加入国标关联 * @param stream * @return */ boolean saveToGB(GbStream stream); /** * 将应用名和流ID移出国标关联 * @param stream * @return */ boolean removeFromGB(GbStream stream); /** * 获取 * @param page * @param count * @return */ PageInfo getPushList(Integer page, Integer count); }