mac
2023-12-21 f9956641e92cce3ece4cdff523a6e453f159d268
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
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
package com.hdl.photovoltaic.ui.bean;
 
import java.io.Serializable;
 
/**
 * 云端上逆变器子设备实体类
 */
public class CloudInverterChildDeviceBean implements Serializable {
 
    private String deviceOidId;//设备Oid id
    private String deviceName;//设备名称
    private String oid;//
    private String deviceModel;//设备型号
    private String mac;//
    private String addresses;//子网号/设备号
    private String soc;//soc
    private String chargeToDay;//当日充电
    private String dischargeToDay;//当日放电
 
    public String getDeviceOidId() {
        return deviceOidId == null ? "" : deviceOidId;
    }
 
    public void setDeviceOidId(String deviceOidId) {
        this.deviceOidId = deviceOidId;
    }
 
    public String getDeviceName() {
        return deviceName == null ? "" : deviceName;
    }
 
    public void setDeviceName(String deviceName) {
        this.deviceName = deviceName;
    }
 
    public String getOid() {
        return oid == null ? "" : oid;
    }
 
    public void setOid(String oid) {
        this.oid = oid;
    }
 
    public String getDeviceModel() {
        return deviceModel == null ? "" : deviceModel;
    }
 
    public void setDeviceModel(String deviceModel) {
        this.deviceModel = deviceModel;
    }
 
    public String getMac() {
        return mac == null ? "" : mac;
    }
 
    public void setMac(String mac) {
        this.mac = mac;
    }
 
    public String getAddresses() {
        return addresses == null ? "" : addresses;
    }
 
    public void setAddresses(String addresses) {
        this.addresses = addresses;
    }
 
    public String getSoc() {
        return soc == null ? "" : soc;
    }
 
    public void setSoc(String soc) {
        this.soc = soc;
    }
 
    public String getChargeToDay() {
        return chargeToDay == null ? "" : chargeToDay;
    }
 
    public void setChargeToDay(String chargeToDay) {
        this.chargeToDay = chargeToDay;
    }
 
    public String getDischargeToDay() {
        return dischargeToDay == null ? "" : dischargeToDay;
    }
 
    public void setDischargeToDay(String dischargeToDay) {
        this.dischargeToDay = dischargeToDay;
    }
 
 
}