mirror of
https://gitee.com/pan648540858/wvp-GB28181-pro.git
synced 2026-06-29 21:47:50 +08:00
18 lines
449 B
Java
18 lines
449 B
Java
package com.genersoft.iot.vmp.service;
|
|
|
|
|
|
import com.genersoft.iot.vmp.gb28181.bean.MobilePosition;
|
|
import com.genersoft.iot.vmp.gb28181.bean.Platform;
|
|
|
|
import java.util.List;
|
|
|
|
public interface IMobilePositionService {
|
|
|
|
List<MobilePosition> queryMobilePositions(Integer channelId, String startTime, String endTime);
|
|
|
|
List<Platform> queryEnablePlatformListWithAsMessageChannel();
|
|
|
|
MobilePosition queryLatestPosition(Integer channelId);
|
|
|
|
}
|