wjc
2024-12-02 f50e8e60e9da99e4f69d8ab76810dc7e5fb448bc
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
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;
    }
}