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 ? "" : getPowerRatio();
|
}
|
|
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;
|
}
|
|
|
}
|