package com.genersoft.iot.vmp.vmanager.platform.bean;
|
|
/**
|
* 精简的channel信息展示,主要是选择通道的时候展示列表使用
|
*/
|
public class ChannelReduce {
|
|
/**
|
* 通道id
|
*/
|
private String channelId;
|
|
/**
|
* 设备id
|
*/
|
private String deviceId;
|
|
/**
|
* 通道名
|
*/
|
private String name;
|
|
/**
|
* 生产厂商
|
*/
|
private String manufacturer;
|
|
/**
|
* wan地址
|
*/
|
private String hostAddress;
|
|
/**
|
* 子节点数
|
*/
|
private int subCount;
|
|
|
public String getChannelId() {
|
return channelId;
|
}
|
|
public void setChannelId(String channelId) {
|
this.channelId = channelId;
|
}
|
|
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 getHostAddress() {
|
return hostAddress;
|
}
|
|
public void setHostAddress(String hostAddress) {
|
this.hostAddress = hostAddress;
|
}
|
}
|