mac
2024-01-08 53cfbb7c949edc8e3d0b624e251afbad1a1c74ca
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
package com.hdl.photovoltaic.ui.bean;
 
import com.hdl.photovoltaic.R;
 
import java.io.Serializable;
 
/**
 * 电站Id实体类
 */
public class HouseIdBean implements Serializable {
    private String homeId;//电站id
    private String powerStationImage;//电站图片
    private String homeName;//电站名称
    private String installedCapacity;//装机容量
    private String power;//发电功率
    private String todayElectricity;//今天发电量
    private int powerStationStatus;//电站状态(电站状态    1:正常(运行),2:离线,3:连接中,4:故障)
    private String localSecret;//本地通讯秘钥
 
    public String getHomeId() {
        return homeId == null ? "" : homeId;
    }
 
    public void setHomeId(String homeId) {
        this.homeId = homeId;
    }
 
    public String getPowerStationImage() {
        return powerStationImage == null ? "" : powerStationImage;
    }
 
    public void setPowerStationImage(String homeImage) {
        this.powerStationImage = homeImage;
    }
 
    public String getHomeName() {
        return homeName == null ? "" : homeName;
    }
 
    public void setHomeName(String homeName) {
        this.homeName = homeName;
    }
 
    public String getInstalledCapacity() {
        return installedCapacity == null ? "0" : installedCapacity;
    }
 
    public void setInstalledCapacity(String installedCapacity) {
        this.installedCapacity = installedCapacity;
    }
 
    public String getPower() {
        return power == null ? "0" : power;
    }
 
    public void setPower(String power) {
        this.power = power;
    }
 
    public String getTodayElectricity() {
        return todayElectricity == null ? "" : todayElectricity;
    }
 
    public void setTodayElectricity(String todayElectricity) {
        this.todayElectricity = todayElectricity;
    }
 
    public int getPowerStationStatus() {
        return powerStationStatus;
    }
 
    public void setPowerStationStatus(int powerStationStatus) {
        this.powerStationStatus = powerStationStatus;
    }
 
    public String getLocalSecret() {
        return localSecret == null ? "" : localSecret;
    }
 
    public void setLocalSecret(String localSecret) {
        this.localSecret = localSecret;
    }
 
 
}