wjc
2025-03-28 e440aef4e5d8e4963cbc8e93a7d503c3f46e7636
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;
    }
}