‘sxh’
2023-06-15 652489b47ef582b3f492039ab7fd58c558c1ba36
src/main/java/com/genersoft/iot/vmp/gb28181/bean/Device.java
@@ -78,7 +78,7 @@
    * 在线
    */
   @Schema(description = "是否在线,true为在线,false为离线")
   private boolean online;
   private boolean onLine;
   /**
@@ -195,6 +195,8 @@
   private SipTransactionInfo sipTransactionInfo;
   public String getDeviceId() {
      return deviceId;
   }
@@ -286,12 +288,12 @@
      this.hostAddress = hostAddress;
   }
   public boolean isOnline() {
      return online;
   public boolean isOnLine() {
      return onLine;
   }
   public void setOnline(boolean online) {
      this.online = online;
   public void setOnLine(boolean onLine) {
      this.onLine = onLine;
   }
   public int getChannelCount() {
@@ -461,4 +463,20 @@
   public void setSipTransactionInfo(SipTransactionInfo sipTransactionInfo) {
      this.sipTransactionInfo = sipTransactionInfo;
   }
   /*======================设备主子码流逻辑START=========================*/
   @Schema(description = "开启主子码流切换的开关(false-不开启,true-开启)")
   private boolean switchPrimarySubStream;
   public boolean isSwitchPrimarySubStream() {
      return switchPrimarySubStream;
   }
   public void setSwitchPrimarySubStream(boolean switchPrimarySubStream) {
      this.switchPrimarySubStream = switchPrimarySubStream;
   }
   /*======================设备主子码流逻辑END=========================*/
}