648540858
2020-09-25 da14c7f24c61cf9027a02d8e566ab89116136f19
src/main/java/com/genersoft/iot/vmp/gb28181/bean/DeviceChannel.java
@@ -100,7 +100,12 @@
   /**
    * 密码
    */
   private String password;
   private String password;
   /**
    * 云台控制
    */
   private int PTZType;
   
   /**
    * 在线/离线
@@ -122,6 +127,11 @@
    * 纬度
    */
   private double latitude;
   /**
    * 流唯一编号,存在表示正在直播
    */
   private String  ssrc;
   public String getChannelId() {
      return channelId;
@@ -306,4 +316,20 @@
   public void setLatitude(double latitude) {
      this.latitude = latitude;
   }
   public int getPTZType() {
      return PTZType;
   }
   public void setPTZType(int PTZType) {
      this.PTZType = PTZType;
   }
   public String getSsrc() {
      return ssrc;
   }
   public void setSsrc(String ssrc) {
      this.ssrc = ssrc;
   }
}