| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193 |
- package com.genersoft.iot.vmp.gb28181.bean;
- public class Device {
- /**
- * 设备Id
- */
- private String deviceId;
- /**
- * 设备名
- */
- private String name;
-
- /**
- * 生产厂商
- */
- private String manufacturer;
-
- /**
- * 型号
- */
- private String model;
-
- /**
- * 固件版本
- */
- private String firmware;
- /**
- * 传输协议
- * UDP/TCP
- */
- 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 String hostAddress;
-
- /**
- * 在线
- */
- private int online;
- /**
- * 注册时间
- */
- private Long registerTimeMillis;
- /**
- * 心跳时间
- */
- private Long KeepaliveTimeMillis;
- /**
- * 通道个数
- */
- private int channelCount;
- public String getDeviceId() {
- return deviceId;
- }
- public void setDeviceId(String deviceId) {
- this.deviceId = deviceId;
- }
- public String getName() {
- return name;
- }
- public void setName(String name) {
- this.name = name;
- }
- public String getManufacturer() {
- return manufacturer;
- }
- public void setManufacturer(String manufacturer) {
- this.manufacturer = manufacturer;
- }
- public String getModel() {
- return model;
- }
- public void setModel(String model) {
- this.model = model;
- }
- public String getFirmware() {
- return firmware;
- }
- public void setFirmware(String firmware) {
- 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;
- }
- public void setOnline(int online) {
- this.online = online;
- }
- public int getChannelCount() {
- return channelCount;
- }
- public void setChannelCount(int channelCount) {
- this.channelCount = channelCount;
- }
- public Long getRegisterTimeMillis() {
- return registerTimeMillis;
- }
- public void setRegisterTimeMillis(Long registerTimeMillis) {
- this.registerTimeMillis = registerTimeMillis;
- }
- public Long getKeepaliveTimeMillis() {
- return KeepaliveTimeMillis;
- }
- public void setKeepaliveTimeMillis(Long keepaliveTimeMillis) {
- KeepaliveTimeMillis = keepaliveTimeMillis;
- }
- }
|