src/main/java/com/genersoft/iot/vmp/gb28181/bean/DeviceChannel.java
@@ -103,9 +103,14 @@
   private String password;
   /**
    * 云台控制
    * 云台类型
    */
   private int PTZType;
   /**
    * 云台类型描述字符串
    */
   private String PTZTypeText;
   
   /**
    * 在线/离线
@@ -137,6 +142,11 @@
    * 流唯一编号,存在表示正在直播
    */
   private String  ssrc;
   /**
    *  是否含有音频
    */
   private  boolean hasAudio;
   public String getChannelId() {
      return channelId;
@@ -328,6 +338,27 @@
   public void setPTZType(int PTZType) {
      this.PTZType = PTZType;
      switch (PTZType) {
         case 0:
            this.PTZTypeText = "未知";
            break;
         case 1:
            this.PTZTypeText = "球机";
            break;
         case 2:
            this.PTZTypeText = "半球";
            break;
         case 3:
            this.PTZTypeText = "固定枪机";
            break;
         case 4:
            this.PTZTypeText = "遥控枪机";
            break;
      }
   }
   public String getPTZTypeText() {
      return PTZTypeText;
   }
   public String getSsrc() {
@@ -345,4 +376,16 @@
   public void setSubCount(int subCount) {
      this.subCount = subCount;
   }
   public void setPTZTypeText(String PTZTypeText) {
      this.PTZTypeText = PTZTypeText;
   }
   public boolean isHasAudio() {
      return hasAudio;
   }
   public void setHasAudio(boolean hasAudio) {
      this.hasAudio = hasAudio;
   }
}