648540858
2024-05-29 764d04b497356ba6bcbb75fd42b51eca750f7223
src/main/java/com/genersoft/iot/vmp/gb28181/bean/DeviceChannel.java
@@ -187,6 +187,18 @@
   private double latitude;
   /**
    * 经度
    */
   @Schema(description = "自定义经度")
   private double customLongitude;
   /**
    * 纬度
    */
   @Schema(description = "自定义纬度")
   private double customLatitude;
   /**
    * 经度 GCJ02
    */
   @Schema(description = "GCJ02坐标系经度")
@@ -226,7 +238,7 @@
    *  是否含有音频
    */
   @Schema(description = "是否含有音频")
   private boolean hasAudio;
   private Boolean hasAudio;
   /**
    * 标记通道的类型,0->国标通道 1->直播流通道 2->业务分组/虚拟组织/行政区划
@@ -523,11 +535,11 @@
      this.subCount = subCount;
   }
   public boolean isHasAudio() {
   public Boolean getHasAudio() {
      return hasAudio;
   }
   public void setHasAudio(boolean hasAudio) {
   public void setHasAudio(Boolean hasAudio) {
      this.hasAudio = hasAudio;
   }
@@ -586,4 +598,20 @@
   public void setStreamIdentification(String streamIdentification) {
      this.streamIdentification = streamIdentification;
   }
   public double getCustomLongitude() {
      return customLongitude;
   }
   public void setCustomLongitude(double customLongitude) {
      this.customLongitude = customLongitude;
   }
   public double getCustomLatitude() {
      return customLatitude;
   }
   public void setCustomLatitude(double customLatitude) {
      this.customLatitude = customLatitude;
   }
}