package com.hdl.photovoltaic.bean;
|
|
import com.hdl.sdk.link.core.bean.gateway.GatewayBean;
|
|
public class InverterBean extends GatewayBean {
|
|
|
private String remote;
|
private String ip_gateway;
|
|
public String getRemote() {
|
return this.remote == null ? "" : this.remote;
|
}
|
|
public void setRemote(String remote) {
|
this.remote = remote;
|
}
|
|
public String getIp_gateway() {
|
return this.ip_gateway == null ? "" : this.ip_gateway;
|
}
|
|
public void setIp_gateway(String ip_gateway) {
|
this.ip_gateway = ip_gateway;
|
}
|
}
|