| | |
| | |
|
| | | import com.genersoft.iot.vmp.gb28181.bean.Device;
|
| | | import com.genersoft.iot.vmp.gb28181.bean.DeviceChannel;
|
| | | import com.genersoft.iot.vmp.gb28181.bean.ParentPlatform;
|
| | | import com.genersoft.iot.vmp.vmanager.platform.bean.ChannelReduce;
|
| | | import com.genersoft.iot.vmp.gb28181.bean.MobilePosition;
|
| | | import com.github.pagehelper.PageInfo;
|
| | |
|
| | | /**
|
| | |
| | | * @author: swwheihei
|
| | | * @date: 2020年5月6日 下午2:14:31
|
| | | */
|
| | | @SuppressWarnings("rawtypes")
|
| | | public interface IVideoManagerStorager {
|
| | |
|
| | | /**
|
| | |
| | | */
|
| | | void cleanChannelsForDevice(String deviceId);
|
| | |
|
| | |
|
| | | /**
|
| | | * 更新上级平台
|
| | | * @param parentPlatform
|
| | | */
|
| | | boolean updateParentPlatform(ParentPlatform parentPlatform);
|
| | |
|
| | |
|
| | | /**
|
| | | * 添加上级平台
|
| | | * @param parentPlatform
|
| | | */
|
| | | boolean addParentPlatform(ParentPlatform parentPlatform);
|
| | |
|
| | | /**
|
| | | * 删除上级平台
|
| | | * @param parentPlatform
|
| | | */
|
| | | boolean deleteParentPlatform(ParentPlatform parentPlatform);
|
| | |
|
| | |
|
| | | /**
|
| | | * 分页获取上级平台
|
| | | * @param page
|
| | | * @param count
|
| | | * @return
|
| | | */
|
| | | PageInfo<ParentPlatform> queryParentPlatformList(int page, int count);
|
| | |
|
| | | /**
|
| | | * 获取所有已启用的平台
|
| | | * @return
|
| | | */
|
| | | List<ParentPlatform> queryEnableParentPlatformList(boolean enable);
|
| | |
|
| | | /**
|
| | | * 获取上级平台
|
| | | * @param platformGbId
|
| | | * @return
|
| | | */
|
| | | ParentPlatform queryParentPlatById(String platformGbId);
|
| | |
|
| | | /**
|
| | | * 所有平台离线
|
| | | */
|
| | | void outlineForAllParentPlatform();
|
| | |
|
| | | /**
|
| | | * 查询通道信息,不区分设备(已关联平台或全部)
|
| | | */
|
| | | PageInfo<ChannelReduce> queryAllChannelList(int page, int count, String query, Boolean online, Boolean channelType, String platformId, Boolean inPlatform);
|
| | |
|
| | | /**
|
| | | * 查询设备的通道信息
|
| | | */
|
| | | List<ChannelReduce> queryChannelListInParentPlatform(String platformId);
|
| | |
|
| | |
|
| | | /**
|
| | | * 更新上级平台的通道信息
|
| | | * @param platformId
|
| | | * @param channelReduces
|
| | | * @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);
|
| | |
|
| | |
|
| | | /**
|
| | | * 添加Mobile Position设备移动位置
|
| | | * @param MobilePosition
|
| | | * @return
|
| | | */
|
| | | public boolean insertMobilePosition(MobilePosition mobilePosition);
|
| | |
|
| | | /**
|
| | | * 查询移动位置轨迹
|
| | | * @param deviceId
|
| | | * @param startTime
|
| | | * @param endTime
|
| | | */
|
| | | public List<MobilePosition> queryMobilePositions(String deviceId, String startTime, String endTime);
|
| | |
|
| | | /**
|
| | | * 查询最新移动位置
|
| | | * @param deviceId
|
| | | */
|
| | | public MobilePosition queryLatestPosition(String deviceId);
|
| | |
|
| | | /**
|
| | | * 删除指定设备的所有移动位置
|
| | | * @param deviceId
|
| | | */
|
| | | public int clearMobilePositionsByDeviceId(String deviceId);
|
| | | }
|