648540858
2024-04-17 313243195e8a99572b1e1d89aecd740ece96dcd0
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坐标系经度")
@@ -447,16 +459,16 @@
      this.password = password;
   }
   public int getPTZType() {
   public int getPtzType() {
      return ptzType;
   }
   public String getPTZTypeText() {
   public String getPtzTypeText() {
      return ptzTypeText;
   }
   public void setPTZTypeText(String PTZTypeText) {
      this.ptzTypeText = PTZTypeText;
   public void setPtzTypeText(String ptzTypeText) {
      this.ptzTypeText = ptzTypeText;
   }
   public boolean isStatus() {
@@ -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;
   }
}