648540858
2022-01-14 ac1a4a027a7bd88efb32e9da666bdba4b5fa166f
src/main/java/com/genersoft/iot/vmp/gb28181/bean/DeviceChannel.java
@@ -2,10 +2,17 @@
public class DeviceChannel {
   /**
    * 通道id
    */
   private String channelId;
   /**
    * 设备id
    */
   private String deviceId;
   
   /**
    * 通道名
@@ -111,6 +118,16 @@
    * 云台类型描述字符串
    */
   private String PTZTypeText;
   /**
    * 创建时间
    */
   private String createTime;
   /**
    * 更新时间
    */
   private String updateTime;
   
   /**
    * 在线/离线
@@ -146,13 +163,15 @@
   /**
    *  是否含有音频
    */
   private  boolean hasAudio;
   private boolean hasAudio;
   /**
    *  是否正在播放
    */
   private  boolean play;
   public String getDeviceId() {
      return deviceId;
   }
   public void setDeviceId(String deviceId) {
      this.deviceId = deviceId;
   }
   public void setPTZType(int PTZType) {
      this.PTZType = PTZType;
@@ -387,14 +406,6 @@
      this.hasAudio = hasAudio;
   }
   public boolean isPlay() {
      return play;
   }
   public void setPlay(boolean play) {
      this.play = play;
   }
   public String getStreamId() {
      return streamId;
   }
@@ -402,4 +413,20 @@
   public void setStreamId(String streamId) {
      this.streamId = streamId;
   }
   public String getCreateTime() {
      return createTime;
   }
   public void setCreateTime(String createTime) {
      this.createTime = createTime;
   }
   public String getUpdateTime() {
      return updateTime;
   }
   public void setUpdateTime(String updateTime) {
      this.updateTime = updateTime;
   }
}