行车超视距功能修改

描述:
1. 车侧、路侧两个接口分开
2. 兼容两套播放方式

Signed-off-by: chenfufeng <chenfufeng@zhidaoauto.com>
This commit is contained in:
chenfufeng
2021-11-09 10:38:34 +08:00
parent 9a6adb75b8
commit c03a2f511b
14 changed files with 273 additions and 84 deletions

View File

@@ -1,6 +1,6 @@
package com.mogo.eagle.core.function.api.monitoring;
import com.mogo.eagle.core.data.camera.Camera;
import com.mogo.eagle.core.data.camera.CameraEntity;
import com.mogo.eagle.core.function.api.base.IMoGoFunctionServerProvider;
import java.util.List;
@@ -11,5 +11,5 @@ import java.util.List;
* 超视距功能,路测摄像头,前车摄像头监控
*/
public interface IMoGoMonitoringProvider extends IMoGoFunctionServerProvider {
List<Camera> getCameraList();
List<CameraEntity> getCameraList();
}