添加舱内外和直播地址

This commit is contained in:
孙小云 2026-03-17 15:18:41 +08:00
parent b6c2149ba5
commit 1ae7289fda
2 changed files with 6 additions and 0 deletions

View File

@ -123,6 +123,9 @@ public class DockDetailDTO implements Serializable
/** 舱外摄像头 */
private String externalCamera;
/** 直播 */
private String liveCamera;
/** 充放电状态 */
private String chargingStatus;

View File

@ -88,6 +88,9 @@ public class TuohengBufferDeviceImpl implements IBufferDeviceService {
dto.setDockId(dock.getDockId());
dto.setDockName(dock.getDockName());
dto.setDockLocation(dock.getDockLocation());
dto.setInternalCamera(dock.getCabinVideoUrl());
dto.setExternalCamera(dock.getOutsideVideoUrl());
dto.setLiveCamera(dock.getLiveVideoUrl());
dto.setDockIotId(device.getIotDeviceId());
dto.setSnNumber(device.getDeviceSn());
dto.setBindTime(device.getCreateTime().getTime());