package com.hdl.sdk.hdl_core.HDLDeviceManger.Bean.ZigbeeBean;
|
|
import java.io.Serializable;
|
import java.util.List;
|
|
/**
|
* 储存的设备列表
|
*/
|
public class ZigbeeDeviceSaveBean {
|
private String ipAddress;//网关ip地址
|
private String gatewayId;//网关id
|
int mSubnetID;//对网关进行标记
|
private int Device_ID;//设备id(标识是哪个设备)
|
private int deviceMark;
|
private String DeviceAddr;//设备mac地址(同一个设备(不同回路)只有一个mac地址)
|
private int Epoint;//设备端口号(回路号)ChannelNum
|
private String MacName;//设备名称
|
private String DeviceName;//设备回路名称
|
private List<ZigbeeDeviceListBean.Data.InClusterList> InClusterList;//输入族列表(保留)
|
|
public int getDeviceMark() {
|
return deviceMark;
|
}
|
|
public void setDeviceMark(int deviceMark) {
|
this.deviceMark = deviceMark;
|
}
|
|
public String getIpAddress() {
|
return ipAddress;
|
}
|
|
public void setIpAddress(String ipAddress) {
|
this.ipAddress = ipAddress;
|
}
|
|
public String getGatewayId() {
|
return gatewayId;
|
}
|
|
public void setGatewayId(String gatewayId) {
|
this.gatewayId = gatewayId;
|
}
|
|
|
public List<ZigbeeDeviceListBean.Data.InClusterList> getInClusterList() {
|
return InClusterList;
|
}
|
|
public void setInClusterList(List<ZigbeeDeviceListBean.Data.InClusterList> inClusterList) {
|
InClusterList = inClusterList;
|
}
|
|
public int getmSubnetID() {
|
return mSubnetID;
|
}
|
|
public void setmSubnetID(int mSubnetID) {
|
this.mSubnetID = mSubnetID;
|
}
|
|
public int getDevice_ID() {
|
return Device_ID;
|
}
|
|
public void setDevice_ID(int device_ID) {
|
Device_ID = device_ID;
|
}
|
|
public String getDeviceAddr() {
|
return DeviceAddr;
|
}
|
|
public void setDeviceAddr(String deviceAddr) {
|
DeviceAddr = deviceAddr;
|
}
|
|
public int getEpoint() {
|
return Epoint;
|
}
|
|
public void setEpoint(int epoint) {
|
Epoint = epoint;
|
}
|
|
public String getMacName() {
|
return MacName;
|
}
|
|
public void setMacName(String macName) {
|
MacName = macName;
|
}
|
|
public String getDeviceName() {
|
return DeviceName;
|
}
|
|
public void setDeviceName(String deviceName) {
|
DeviceName = deviceName;
|
}
|
|
|
|
public static class inClusterList{
|
private int InCluster;
|
|
public int getInCluster() {
|
return InCluster;
|
}
|
|
public void setInCluster(int inCluster) {
|
InCluster = inCluster;
|
}
|
}
|
}
|
|