package com.hdl.sdk.hdl_core.HDLDeviceManger.Bean.ZigbeeBean; import java.util.List; /** * 网关信息 */ public class ZigbeeGatewayInfoBean { private boolean IsDomain; private String gatewayName; private String ipAddress; private String gatewayId; private int count; public boolean isDomain() { return IsDomain; } public void setDomain(boolean domain) { IsDomain = domain; } public String getGatewayName() { return gatewayName; } public void setGatewayName(String gatewayName) { this.gatewayName = gatewayName; } public int getCount() { return count; } public void setCount(int count) { this.count = count; } 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; } }