648540858
2024-02-22 f6c48588daba63846a9e70ef10fe7af2fceab035
src/main/java/com/genersoft/iot/vmp/gb28181/bean/DeviceChannel.java
@@ -172,7 +172,7 @@
    * 遇到过NVR下的IPC下发信令可以推流, 但是 Status 响应 OFF
    */
   @Schema(description = "在线/离线, 1在线,0离线")
   private int status;
   private boolean status;
   /**
    * 经度
@@ -245,6 +245,10 @@
    */
   @Schema(description = "GPS的更新时间")
   private String gpsTime;
   @Schema(description = "码流标识,优先级高于设备中码流标识," +
         "用于选择码流时组成码流标识。默认为null,不设置。可选值: stream/streamnumber/streamprofile/streamMode")
   private String streamIdentification;
   public int getId() {
      return id;
@@ -455,11 +459,11 @@
      this.PTZTypeText = PTZTypeText;
   }
   public int getStatus() {
   public boolean isStatus() {
      return status;
   }
   public void setStatus(int status) {
   public void setStatus(boolean status) {
      this.status = status;
   }
@@ -574,4 +578,12 @@
   public void setGpsTime(String gpsTime) {
      this.gpsTime = gpsTime;
   }
   public String getStreamIdentification() {
      return streamIdentification;
   }
   public void setStreamIdentification(String streamIdentification) {
      this.streamIdentification = streamIdentification;
   }
}