package com.hdl.sdk.connect.cloud.bean;
|
|
import java.io.Serializable;
|
|
/**
|
* Created by Tong on 2021/12/7.
|
* 网关信息
|
*/
|
public class GatewayInfo implements Serializable {
|
|
private String gatewayId;
|
private String aesKey;
|
private Integer deviceId;
|
private Integer encryptionType;
|
private String gatewayType;
|
private String groupName;
|
private String homeId;
|
private String mac;
|
private String primaryKey;
|
private String projectName;
|
private Integer subnetId;
|
private String userName;
|
private String gatewayStatus;
|
private String modifyTime;
|
private String localSecret;
|
private String lastHeartbeatTime;
|
|
public String getGatewayId() {
|
return gatewayId;
|
}
|
|
public void setGatewayId(String gatewayId) {
|
this.gatewayId = gatewayId;
|
}
|
|
public String getAesKey() {
|
return aesKey;
|
}
|
|
public void setAesKey(String aesKey) {
|
this.aesKey = aesKey;
|
}
|
|
public Integer getDeviceId() {
|
return deviceId;
|
}
|
|
public void setDeviceId(Integer deviceId) {
|
this.deviceId = deviceId;
|
}
|
|
public Integer getEncryptionType() {
|
return encryptionType;
|
}
|
|
public void setEncryptionType(Integer encryptionType) {
|
this.encryptionType = encryptionType;
|
}
|
|
public String getGatewayType() {
|
return gatewayType;
|
}
|
|
public void setGatewayType(String gatewayType) {
|
this.gatewayType = gatewayType;
|
}
|
|
public String getGroupName() {
|
return groupName;
|
}
|
|
public void setGroupName(String groupName) {
|
this.groupName = groupName;
|
}
|
|
public String getHomeId() {
|
return homeId;
|
}
|
|
public void setHomeId(String homeId) {
|
this.homeId = homeId;
|
}
|
|
public String getMac() {
|
return mac;
|
}
|
|
public void setMac(String mac) {
|
this.mac = mac;
|
}
|
|
public String getPrimaryKey() {
|
return primaryKey;
|
}
|
|
public void setPrimaryKey(String primaryKey) {
|
this.primaryKey = primaryKey;
|
}
|
|
public String getProjectName() {
|
return projectName;
|
}
|
|
public void setProjectName(String projectName) {
|
this.projectName = projectName;
|
}
|
|
public Integer getSubnetId() {
|
return subnetId;
|
}
|
|
public void setSubnetId(Integer subnetId) {
|
this.subnetId = subnetId;
|
}
|
|
public String getUserName() {
|
return userName;
|
}
|
|
public void setUserName(String userName) {
|
this.userName = userName;
|
}
|
|
public String getGatewayStatus() {
|
return gatewayStatus;
|
}
|
|
public void setGatewayStatus(String gatewayStatus) {
|
this.gatewayStatus = gatewayStatus;
|
}
|
|
public String getModifyTime() {
|
return modifyTime;
|
}
|
|
public void setModifyTime(String modifyTime) {
|
this.modifyTime = modifyTime;
|
}
|
|
public String getLocalSecret() {
|
return localSecret;
|
}
|
|
public void setLocalSecret(String localSecret) {
|
this.localSecret = localSecret;
|
}
|
|
public String getLastHeartbeatTime() {
|
return lastHeartbeatTime;
|
}
|
|
public void setLastHeartbeatTime(String lastHeartbeatTime) {
|
this.lastHeartbeatTime = lastHeartbeatTime;
|
}
|
|
@Override
|
public String toString() {
|
return "GatewayInfo{" +
|
"gatewayId='" + gatewayId + '\'' +
|
", aesKey='" + aesKey + '\'' +
|
", deviceId=" + deviceId +
|
", encryptionType=" + encryptionType +
|
", gatewayType='" + gatewayType + '\'' +
|
", groupName='" + groupName + '\'' +
|
", homeId='" + homeId + '\'' +
|
", mac='" + mac + '\'' +
|
", primaryKey='" + primaryKey + '\'' +
|
", projectName='" + projectName + '\'' +
|
", subnetId=" + subnetId +
|
", userName='" + userName + '\'' +
|
", gatewayStatus='" + gatewayStatus + '\'' +
|
", modifyTime='" + modifyTime + '\'' +
|
", localSecret='" + localSecret + '\'' +
|
", lastHeartbeatTime='" + lastHeartbeatTime + '\'' +
|
'}';
|
}
|
}
|