| | |
| | | * 遇到过NVR下的IPC下发信令可以推流, 但是 Status 响应 OFF |
| | | */ |
| | | @Schema(description = "在线/离线, 1在线,0离线") |
| | | private int status; |
| | | private boolean status; |
| | | |
| | | /** |
| | | * 经度 |
| | |
| | | */ |
| | | @Schema(description = "GPS的更新时间") |
| | | private String gpsTime; |
| | | |
| | | @Schema(description = "码流标识,优先级高于设备中码流标识," + |
| | | "用于选择码流时组成码流标识。默认为null,不设置。可选值: stream/streamnumber/streamprofile/streamMode") |
| | | private String streamIdentification; |
| | | |
| | | public int getId() { |
| | | return id; |
| | |
| | | this.PTZTypeText = PTZTypeText; |
| | | } |
| | | |
| | | public int getStatus() { |
| | | public boolean isStatus() { |
| | | return status; |
| | | } |
| | | |
| | | public void setStatus(int status) { |
| | | public void setStatus(boolean status) { |
| | | this.status = status; |
| | | } |
| | | |
| | |
| | | public void setGpsTime(String gpsTime) { |
| | | this.gpsTime = gpsTime; |
| | | } |
| | | |
| | | public String getStreamIdentification() { |
| | | return streamIdentification; |
| | | } |
| | | |
| | | public void setStreamIdentification(String streamIdentification) { |
| | | this.streamIdentification = streamIdentification; |
| | | } |
| | | } |