package com.hdl.sdk.connect.bean.request;
|
|
|
import java.io.Serializable;
|
|
/**
|
* Created by hxb on 2023/9/14.
|
*/
|
public class GatewayRemoteEditRequest extends BaseRequest {
|
private GatewayObjects objects;
|
|
public GatewayObjects getObjects() {
|
return objects;
|
}
|
|
public void setObjects(GatewayObjects value) {
|
this.objects = value;
|
}
|
|
public static class GatewayObjects implements Serializable {
|
|
/**
|
* 住宅Id
|
*/
|
private String homeId;
|
/**
|
* 服务器地址
|
*/
|
private String server_addr;
|
|
public String getHomeId() {
|
return homeId;
|
}
|
|
public void setHomeId(String homeId) {
|
this.homeId = homeId;
|
}
|
|
public String getServer_addr() {
|
return server_addr;
|
}
|
|
public void setServer_addr(String server_addr) {
|
this.server_addr = server_addr;
|
}
|
}
|
|
|
}
|