lawrencehj
2021-08-26 45969a00b74b5a240c0dc6e2c37f5381cd0cb65f
src/main/java/com/genersoft/iot/vmp/gb28181/bean/Device.java
@@ -1,7 +1,5 @@
package com.genersoft.iot.vmp.gb28181.bean;
import java.util.Map;
public class Device {
@@ -37,20 +35,69 @@
   private String transport;
   /**
    * 数据流传输模式
    * UDP:udp传输
    * TCP-ACTIVE:tcp主动模式
    * TCP-PASSIVE:tcp被动模式
    */
   private String streamMode;
   /**
    * wan地址_ip
    */
   private String  ip;
   /**
    * wan地址_port
    */
   private int port;
   /**
    * wan地址
    */
   private Host host;
   private String  hostAddress;
   
   /**
    * 在线
    */
   private int online;
   /**
    * 通道列表
    */
   private Map<String,DeviceChannel> channelMap;
   /**
    * 注册时间
    */
   private String registerTime;
   /**
    * 心跳时间
    */
   private String keepaliveTime;
   /**
    * 通道个数
    */
   private int channelCount;
   /**
    * 注册有效期
    */
   private int expires;
   /**
    * 创建时间
    */
   private String createTime;
   /**
    * 更新时间
    */
   private String updateTime;
   /**
    * 设备使用的媒体id, 默认为null
    */
   private String mediaServerId;
   public String getDeviceId() {
      return deviceId;
@@ -66,30 +113,6 @@
   public void setName(String name) {
      this.name = name;
   }
   public String getTransport() {
      return transport;
   }
   public void setTransport(String transport) {
      this.transport = transport;
   }
   public Host getHost() {
      return host;
   }
   public void setHost(Host host) {
      this.host = host;
   }
   public Map<String, DeviceChannel> getChannelMap() {
      return channelMap;
   }
   public void setChannelMap(Map<String, DeviceChannel> channelMap) {
      this.channelMap = channelMap;
   }
   public String getManufacturer() {
@@ -116,6 +139,46 @@
      this.firmware = firmware;
   }
   public String getTransport() {
      return transport;
   }
   public void setTransport(String transport) {
      this.transport = transport;
   }
   public String getStreamMode() {
      return streamMode;
   }
   public void setStreamMode(String streamMode) {
      this.streamMode = streamMode;
   }
   public String getIp() {
      return ip;
   }
   public void setIp(String ip) {
      this.ip = ip;
   }
   public int getPort() {
      return port;
   }
   public void setPort(int port) {
      this.port = port;
   }
   public String getHostAddress() {
      return hostAddress;
   }
   public void setHostAddress(String hostAddress) {
      this.hostAddress = hostAddress;
   }
   public int getOnline() {
      return online;
   }
@@ -123,4 +186,60 @@
   public void setOnline(int online) {
      this.online = online;
   }
   public int getChannelCount() {
      return channelCount;
   }
   public void setChannelCount(int channelCount) {
      this.channelCount = channelCount;
   }
   public String getRegisterTime() {
      return registerTime;
   }
   public void setRegisterTime(String registerTime) {
      this.registerTime = registerTime;
   }
   public String getKeepaliveTime() {
      return keepaliveTime;
   }
   public void setKeepaliveTime(String keepaliveTime) {
      this.keepaliveTime = keepaliveTime;
   }
   public int getExpires() {
      return expires;
   }
   public void setExpires(int expires) {
      this.expires = expires;
   }
   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;
   }
   public String getMediaServerId() {
      return mediaServerId;
   }
   public void setMediaServerId(String mediaServerId) {
      this.mediaServerId = mediaServerId;
   }
}