wjc
2025-04-28 0c38caf2c04fd06a765be3f0a5d5db7e012b2c1a
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
package com.hdl.photovoltaic.ui.bean;
 
import java.io.Serializable;
 
/**
 * 统计概览数据实体类
 */
public class DataOverBean implements Serializable {
    private String installedCapacity;//装机容量
    private String power;//发电功率
    private String powerRatio;//发电功率占比(当日发电功率/装机容量 * 100%    )
    private String todayElectricity;//当日发电量
    private String monthElectricity;//当月发电量
    private String yearElectricity;//当年发电量
    private String totalElectricity;//累计发电量
 
    public String getInstalledCapacity() {
        return installedCapacity == null ? "" : installedCapacity;
    }
 
    public void setInstalledCapacity(String installedCapacity) {
        this.installedCapacity = installedCapacity;
    }
 
    public String getPower() {
        return power == null ? "" : power;
    }
 
    public void setPower(String power) {
        this.power = power;
    }
 
    public String getPowerRatio() {
        return powerRatio == null ? "" : powerRatio;
    }
 
    public void setPowerRatio(String powerRatio) {
        this.powerRatio = powerRatio;
    }
 
    public String getTodayElectricity() {
        return todayElectricity == null ? "" : todayElectricity;
    }
 
    public void setTodayElectricity(String todayElectricity) {
        this.todayElectricity = todayElectricity;
    }
 
    public String getMonthElectricity() {
        return monthElectricity == null ? "" : monthElectricity;
    }
 
    public void setMonthElectricity(String monthElectricity) {
        this.monthElectricity = monthElectricity;
    }
 
    public String getYearElectricity() {
        return yearElectricity == null ? "" : yearElectricity;
    }
 
    public void setYearElectricity(String yearElectricity) {
        this.yearElectricity = yearElectricity;
    }
 
    public String getTotalElectricity() {
        return totalElectricity == null ? "" : totalElectricity;
    }
 
    public void setTotalElectricity(String totalElectricity) {
        this.totalElectricity = totalElectricity;
    }
 
 
}