|
@@ -1,5 +1,6 @@
|
|
package com.gyee.runeconomy.model.fitting;
|
|
package com.gyee.runeconomy.model.fitting;
|
|
|
|
|
|
|
|
+import cn.hutool.core.util.NumberUtil;
|
|
import com.baomidou.mybatisplus.annotation.IdType;
|
|
import com.baomidou.mybatisplus.annotation.IdType;
|
|
import com.baomidou.mybatisplus.annotation.TableId;
|
|
import com.baomidou.mybatisplus.annotation.TableId;
|
|
import com.baomidou.mybatisplus.annotation.TableName;
|
|
import com.baomidou.mybatisplus.annotation.TableName;
|
|
@@ -7,8 +8,7 @@ import io.swagger.annotations.ApiModel;
|
|
import io.swagger.annotations.ApiModelProperty;
|
|
import io.swagger.annotations.ApiModelProperty;
|
|
|
|
|
|
import java.io.Serializable;
|
|
import java.io.Serializable;
|
|
-import java.math.BigDecimal;
|
|
|
|
-import java.time.LocalDate;
|
|
|
|
|
|
+import java.util.Date;
|
|
|
|
|
|
/**
|
|
/**
|
|
* <p>
|
|
* <p>
|
|
@@ -29,7 +29,7 @@ public class ProEconStationAnalysis implements Serializable {
|
|
|
|
|
|
private String equipmentId;
|
|
private String equipmentId;
|
|
|
|
|
|
- private LocalDate recordDate;
|
|
|
|
|
|
+ private Date recordDate;
|
|
|
|
|
|
private String nemName;
|
|
private String nemName;
|
|
|
|
|
|
@@ -42,91 +42,91 @@ public class ProEconStationAnalysis implements Serializable {
|
|
private String companyId;
|
|
private String companyId;
|
|
|
|
|
|
@ApiModelProperty("年平均风速m/s")
|
|
@ApiModelProperty("年平均风速m/s")
|
|
- private BigDecimal yearAverageWindSpeed;
|
|
|
|
|
|
+ private Double yearAverageWindSpeed;
|
|
|
|
|
|
@ApiModelProperty("平均温度°C")
|
|
@ApiModelProperty("平均温度°C")
|
|
- private BigDecimal averageTemperature;
|
|
|
|
|
|
+ private Double averageTemperature;
|
|
|
|
|
|
@ApiModelProperty("相对湿度%")
|
|
@ApiModelProperty("相对湿度%")
|
|
- private BigDecimal relativeHumidity;
|
|
|
|
|
|
+ private Double relativeHumidity;
|
|
|
|
|
|
@ApiModelProperty("水平面总辐射量kWh/㎡")
|
|
@ApiModelProperty("水平面总辐射量kWh/㎡")
|
|
- private BigDecimal horizontalTotalRadiation;
|
|
|
|
|
|
+ private Double horizontalTotalRadiation;
|
|
|
|
|
|
@ApiModelProperty("倾斜面总辐射量kWh/㎡")
|
|
@ApiModelProperty("倾斜面总辐射量kWh/㎡")
|
|
- private BigDecimal inclinedTotalRadiation;
|
|
|
|
|
|
+ private Double inclinedTotalRadiation;
|
|
|
|
|
|
@ApiModelProperty("日照时数h")
|
|
@ApiModelProperty("日照时数h")
|
|
- private BigDecimal sunshineDuration;
|
|
|
|
|
|
+ private Double sunshineDuration;
|
|
|
|
|
|
@ApiModelProperty("发电量kWh")
|
|
@ApiModelProperty("发电量kWh")
|
|
- private BigDecimal powerGeneration;
|
|
|
|
|
|
+ private Double powerGeneration;
|
|
|
|
|
|
@ApiModelProperty("上网电量kWh")
|
|
@ApiModelProperty("上网电量kWh")
|
|
- private BigDecimal gridPower;
|
|
|
|
|
|
+ private Double gridPower;
|
|
|
|
|
|
@ApiModelProperty("购网电量kWh")
|
|
@ApiModelProperty("购网电量kWh")
|
|
- private BigDecimal purchasePower;
|
|
|
|
|
|
+ private Double purchasePower;
|
|
|
|
|
|
@ApiModelProperty("逆变器输入电量kWh")
|
|
@ApiModelProperty("逆变器输入电量kWh")
|
|
- private BigDecimal inverterInputPower;
|
|
|
|
|
|
+ private Double inverterInputPower;
|
|
|
|
|
|
@ApiModelProperty("逆变器输出电量kWh")
|
|
@ApiModelProperty("逆变器输出电量kWh")
|
|
- private BigDecimal inverterOutputPower;
|
|
|
|
|
|
+ private Double inverterOutputPower;
|
|
|
|
|
|
@ApiModelProperty("等效利用小时数(年利用小时数)h")
|
|
@ApiModelProperty("等效利用小时数(年利用小时数)h")
|
|
- private BigDecimal equivalentHours;
|
|
|
|
|
|
+ private Double equivalentHours;
|
|
|
|
|
|
@ApiModelProperty("弃光电量kWh")
|
|
@ApiModelProperty("弃光电量kWh")
|
|
- private BigDecimal abandonedLightPower;
|
|
|
|
|
|
+ private Double abandonedLightPower;
|
|
|
|
|
|
@ApiModelProperty("弃光率%")
|
|
@ApiModelProperty("弃光率%")
|
|
- private BigDecimal abandonedLightRate;
|
|
|
|
|
|
+ private Double abandonedLightRate;
|
|
|
|
|
|
@ApiModelProperty("用电量kWh")
|
|
@ApiModelProperty("用电量kWh")
|
|
- private BigDecimal plantPowerConsumption;
|
|
|
|
|
|
+ private Double plantPowerConsumption;
|
|
|
|
|
|
@ApiModelProperty("综合厂用电量kWh")
|
|
@ApiModelProperty("综合厂用电量kWh")
|
|
- private BigDecimal comprehensivePlantPowerConsumption;
|
|
|
|
|
|
+ private Double comprehensivePlantPowerConsumption;
|
|
|
|
|
|
@ApiModelProperty("用电率%")
|
|
@ApiModelProperty("用电率%")
|
|
- private BigDecimal plantPowerRate;
|
|
|
|
|
|
+ private Double plantPowerRate;
|
|
|
|
|
|
@ApiModelProperty("综合厂用电率%")
|
|
@ApiModelProperty("综合厂用电率%")
|
|
- private BigDecimal comprehensivePlantPowerRate;
|
|
|
|
|
|
+ private Double comprehensivePlantPowerRate;
|
|
|
|
|
|
@ApiModelProperty("厂损率%")
|
|
@ApiModelProperty("厂损率%")
|
|
- private BigDecimal plantLossRate;
|
|
|
|
|
|
+ private Double plantLossRate;
|
|
|
|
|
|
@ApiModelProperty("逆变器损耗kWh")
|
|
@ApiModelProperty("逆变器损耗kWh")
|
|
- private BigDecimal inverterLoss;
|
|
|
|
|
|
+ private Double inverterLoss;
|
|
|
|
|
|
@ApiModelProperty("集电线路及箱变损耗kWh")
|
|
@ApiModelProperty("集电线路及箱变损耗kWh")
|
|
- private BigDecimal collectorLineAndBoxTransformerLoss;
|
|
|
|
|
|
+ private Double collectorLineAndBoxTransformerLoss;
|
|
|
|
|
|
@ApiModelProperty("升压站损耗kWh")
|
|
@ApiModelProperty("升压站损耗kWh")
|
|
- private BigDecimal boosterStationLoss;
|
|
|
|
|
|
+ private Double boosterStationLoss;
|
|
|
|
|
|
@ApiModelProperty("光伏电站整体效率")
|
|
@ApiModelProperty("光伏电站整体效率")
|
|
- private BigDecimal solarPowerStationEfficiency;
|
|
|
|
|
|
+ private Double solarPowerStationEfficiency;
|
|
|
|
|
|
@ApiModelProperty("最大出力kW")
|
|
@ApiModelProperty("最大出力kW")
|
|
- private BigDecimal maxOutput;
|
|
|
|
|
|
+ private Double maxOutput;
|
|
|
|
|
|
@ApiModelProperty("逆变器转换效率%")
|
|
@ApiModelProperty("逆变器转换效率%")
|
|
- private BigDecimal inverterConversionEfficiency;
|
|
|
|
|
|
+ private Double inverterConversionEfficiency;
|
|
|
|
|
|
@ApiModelProperty("光伏方阵效率%")
|
|
@ApiModelProperty("光伏方阵效率%")
|
|
- private BigDecimal solarArrayEfficiency;
|
|
|
|
|
|
+ private Double solarArrayEfficiency;
|
|
|
|
|
|
@ApiModelProperty("发电时长h")
|
|
@ApiModelProperty("发电时长h")
|
|
- private BigDecimal powerGenerationDuration;
|
|
|
|
|
|
+ private Double powerGenerationDuration;
|
|
|
|
|
|
@ApiModelProperty("停机时长h")
|
|
@ApiModelProperty("停机时长h")
|
|
- private BigDecimal downtimeDuration;
|
|
|
|
|
|
+ private Double downtimeDuration;
|
|
|
|
|
|
@ApiModelProperty("中断时长h")
|
|
@ApiModelProperty("中断时长h")
|
|
- private BigDecimal interruptionDuration;
|
|
|
|
|
|
+ private Double interruptionDuration;
|
|
|
|
|
|
public Integer getId() {
|
|
public Integer getId() {
|
|
return id;
|
|
return id;
|
|
@@ -144,11 +144,11 @@ public class ProEconStationAnalysis implements Serializable {
|
|
this.equipmentId = equipmentId;
|
|
this.equipmentId = equipmentId;
|
|
}
|
|
}
|
|
|
|
|
|
- public LocalDate getRecordDate() {
|
|
|
|
|
|
+ public Date getRecordDate() {
|
|
return recordDate;
|
|
return recordDate;
|
|
}
|
|
}
|
|
|
|
|
|
- public void setRecordDate(LocalDate recordDate) {
|
|
|
|
|
|
+ public void setRecordDate(Date recordDate) {
|
|
this.recordDate = recordDate;
|
|
this.recordDate = recordDate;
|
|
}
|
|
}
|
|
|
|
|
|
@@ -192,235 +192,235 @@ public class ProEconStationAnalysis implements Serializable {
|
|
this.companyId = companyId;
|
|
this.companyId = companyId;
|
|
}
|
|
}
|
|
|
|
|
|
- public BigDecimal getYearAverageWindSpeed() {
|
|
|
|
- return yearAverageWindSpeed;
|
|
|
|
|
|
+ public Double getYearAverageWindSpeed() {
|
|
|
|
+ return NumberUtil.round(yearAverageWindSpeed,2).doubleValue();
|
|
}
|
|
}
|
|
|
|
|
|
- public void setYearAverageWindSpeed(BigDecimal yearAverageWindSpeed) {
|
|
|
|
|
|
+ public void setYearAverageWindSpeed(Double yearAverageWindSpeed) {
|
|
this.yearAverageWindSpeed = yearAverageWindSpeed;
|
|
this.yearAverageWindSpeed = yearAverageWindSpeed;
|
|
}
|
|
}
|
|
|
|
|
|
- public BigDecimal getAverageTemperature() {
|
|
|
|
- return averageTemperature;
|
|
|
|
|
|
+ public Double getAverageTemperature() {
|
|
|
|
+ return NumberUtil.round(averageTemperature,2).doubleValue();
|
|
}
|
|
}
|
|
|
|
|
|
- public void setAverageTemperature(BigDecimal averageTemperature) {
|
|
|
|
|
|
+ public void setAverageTemperature(Double averageTemperature) {
|
|
this.averageTemperature = averageTemperature;
|
|
this.averageTemperature = averageTemperature;
|
|
}
|
|
}
|
|
|
|
|
|
- public BigDecimal getRelativeHumidity() {
|
|
|
|
- return relativeHumidity;
|
|
|
|
|
|
+ public Double getRelativeHumidity() {
|
|
|
|
+ return NumberUtil.round(relativeHumidity,2).doubleValue();
|
|
}
|
|
}
|
|
|
|
|
|
- public void setRelativeHumidity(BigDecimal relativeHumidity) {
|
|
|
|
|
|
+ public void setRelativeHumidity(Double relativeHumidity) {
|
|
this.relativeHumidity = relativeHumidity;
|
|
this.relativeHumidity = relativeHumidity;
|
|
}
|
|
}
|
|
|
|
|
|
- public BigDecimal getHorizontalTotalRadiation() {
|
|
|
|
- return horizontalTotalRadiation;
|
|
|
|
|
|
+ public Double getHorizontalTotalRadiation() {
|
|
|
|
+ return NumberUtil.round(horizontalTotalRadiation,2).doubleValue();
|
|
}
|
|
}
|
|
|
|
|
|
- public void setHorizontalTotalRadiation(BigDecimal horizontalTotalRadiation) {
|
|
|
|
|
|
+ public void setHorizontalTotalRadiation(Double horizontalTotalRadiation) {
|
|
this.horizontalTotalRadiation = horizontalTotalRadiation;
|
|
this.horizontalTotalRadiation = horizontalTotalRadiation;
|
|
}
|
|
}
|
|
|
|
|
|
- public BigDecimal getInclinedTotalRadiation() {
|
|
|
|
- return inclinedTotalRadiation;
|
|
|
|
|
|
+ public Double getInclinedTotalRadiation() {
|
|
|
|
+ return NumberUtil.round(inclinedTotalRadiation,2).doubleValue();
|
|
}
|
|
}
|
|
|
|
|
|
- public void setInclinedTotalRadiation(BigDecimal inclinedTotalRadiation) {
|
|
|
|
|
|
+ public void setInclinedTotalRadiation(Double inclinedTotalRadiation) {
|
|
this.inclinedTotalRadiation = inclinedTotalRadiation;
|
|
this.inclinedTotalRadiation = inclinedTotalRadiation;
|
|
}
|
|
}
|
|
|
|
|
|
- public BigDecimal getSunshineDuration() {
|
|
|
|
- return sunshineDuration;
|
|
|
|
|
|
+ public Double getSunshineDuration() {
|
|
|
|
+ return NumberUtil.round(sunshineDuration,2).doubleValue();
|
|
}
|
|
}
|
|
|
|
|
|
- public void setSunshineDuration(BigDecimal sunshineDuration) {
|
|
|
|
|
|
+ public void setSunshineDuration(Double sunshineDuration) {
|
|
this.sunshineDuration = sunshineDuration;
|
|
this.sunshineDuration = sunshineDuration;
|
|
}
|
|
}
|
|
|
|
|
|
- public BigDecimal getPowerGeneration() {
|
|
|
|
- return powerGeneration;
|
|
|
|
|
|
+ public Double getPowerGeneration() {
|
|
|
|
+ return NumberUtil.round(powerGeneration,2).doubleValue();
|
|
}
|
|
}
|
|
|
|
|
|
- public void setPowerGeneration(BigDecimal powerGeneration) {
|
|
|
|
|
|
+ public void setPowerGeneration(Double powerGeneration) {
|
|
this.powerGeneration = powerGeneration;
|
|
this.powerGeneration = powerGeneration;
|
|
}
|
|
}
|
|
|
|
|
|
- public BigDecimal getGridPower() {
|
|
|
|
- return gridPower;
|
|
|
|
|
|
+ public Double getGridPower() {
|
|
|
|
+ return NumberUtil.round(gridPower,2).doubleValue();
|
|
}
|
|
}
|
|
|
|
|
|
- public void setGridPower(BigDecimal gridPower) {
|
|
|
|
|
|
+ public void setGridPower(Double gridPower) {
|
|
this.gridPower = gridPower;
|
|
this.gridPower = gridPower;
|
|
}
|
|
}
|
|
|
|
|
|
- public BigDecimal getPurchasePower() {
|
|
|
|
- return purchasePower;
|
|
|
|
|
|
+ public Double getPurchasePower() {
|
|
|
|
+ return NumberUtil.round(purchasePower,2).doubleValue();
|
|
}
|
|
}
|
|
|
|
|
|
- public void setPurchasePower(BigDecimal purchasePower) {
|
|
|
|
|
|
+ public void setPurchasePower(Double purchasePower) {
|
|
this.purchasePower = purchasePower;
|
|
this.purchasePower = purchasePower;
|
|
}
|
|
}
|
|
|
|
|
|
- public BigDecimal getInverterInputPower() {
|
|
|
|
- return inverterInputPower;
|
|
|
|
|
|
+ public Double getInverterInputPower() {
|
|
|
|
+ return NumberUtil.round(inverterInputPower,2).doubleValue();
|
|
}
|
|
}
|
|
|
|
|
|
- public void setInverterInputPower(BigDecimal inverterInputPower) {
|
|
|
|
|
|
+ public void setInverterInputPower(Double inverterInputPower) {
|
|
this.inverterInputPower = inverterInputPower;
|
|
this.inverterInputPower = inverterInputPower;
|
|
}
|
|
}
|
|
|
|
|
|
- public BigDecimal getInverterOutputPower() {
|
|
|
|
- return inverterOutputPower;
|
|
|
|
|
|
+ public Double getInverterOutputPower() {
|
|
|
|
+ return NumberUtil.round(inverterOutputPower,2).doubleValue();
|
|
}
|
|
}
|
|
|
|
|
|
- public void setInverterOutputPower(BigDecimal inverterOutputPower) {
|
|
|
|
|
|
+ public void setInverterOutputPower(Double inverterOutputPower) {
|
|
this.inverterOutputPower = inverterOutputPower;
|
|
this.inverterOutputPower = inverterOutputPower;
|
|
}
|
|
}
|
|
|
|
|
|
- public BigDecimal getEquivalentHours() {
|
|
|
|
- return equivalentHours;
|
|
|
|
|
|
+ public Double getEquivalentHours() {
|
|
|
|
+ return NumberUtil.round(equivalentHours,2).doubleValue();
|
|
}
|
|
}
|
|
|
|
|
|
- public void setEquivalentHours(BigDecimal equivalentHours) {
|
|
|
|
|
|
+ public void setEquivalentHours(Double equivalentHours) {
|
|
this.equivalentHours = equivalentHours;
|
|
this.equivalentHours = equivalentHours;
|
|
}
|
|
}
|
|
|
|
|
|
- public BigDecimal getAbandonedLightPower() {
|
|
|
|
- return abandonedLightPower;
|
|
|
|
|
|
+ public Double getAbandonedLightPower() {
|
|
|
|
+ return NumberUtil.round(abandonedLightPower,2).doubleValue();
|
|
}
|
|
}
|
|
|
|
|
|
- public void setAbandonedLightPower(BigDecimal abandonedLightPower) {
|
|
|
|
|
|
+ public void setAbandonedLightPower(Double abandonedLightPower) {
|
|
this.abandonedLightPower = abandonedLightPower;
|
|
this.abandonedLightPower = abandonedLightPower;
|
|
}
|
|
}
|
|
|
|
|
|
- public BigDecimal getAbandonedLightRate() {
|
|
|
|
- return abandonedLightRate;
|
|
|
|
|
|
+ public Double getAbandonedLightRate() {
|
|
|
|
+ return NumberUtil.round(abandonedLightRate,2).doubleValue();
|
|
}
|
|
}
|
|
|
|
|
|
- public void setAbandonedLightRate(BigDecimal abandonedLightRate) {
|
|
|
|
|
|
+ public void setAbandonedLightRate(Double abandonedLightRate) {
|
|
this.abandonedLightRate = abandonedLightRate;
|
|
this.abandonedLightRate = abandonedLightRate;
|
|
}
|
|
}
|
|
|
|
|
|
- public BigDecimal getPlantPowerConsumption() {
|
|
|
|
- return plantPowerConsumption;
|
|
|
|
|
|
+ public Double getPlantPowerConsumption() {
|
|
|
|
+ return NumberUtil.round(plantPowerConsumption,2).doubleValue();
|
|
}
|
|
}
|
|
|
|
|
|
- public void setPlantPowerConsumption(BigDecimal plantPowerConsumption) {
|
|
|
|
|
|
+ public void setPlantPowerConsumption(Double plantPowerConsumption) {
|
|
this.plantPowerConsumption = plantPowerConsumption;
|
|
this.plantPowerConsumption = plantPowerConsumption;
|
|
}
|
|
}
|
|
|
|
|
|
- public BigDecimal getComprehensivePlantPowerConsumption() {
|
|
|
|
- return comprehensivePlantPowerConsumption;
|
|
|
|
|
|
+ public Double getComprehensivePlantPowerConsumption() {
|
|
|
|
+ return NumberUtil.round(comprehensivePlantPowerConsumption,2).doubleValue();
|
|
}
|
|
}
|
|
|
|
|
|
- public void setComprehensivePlantPowerConsumption(BigDecimal comprehensivePlantPowerConsumption) {
|
|
|
|
|
|
+ public void setComprehensivePlantPowerConsumption(Double comprehensivePlantPowerConsumption) {
|
|
this.comprehensivePlantPowerConsumption = comprehensivePlantPowerConsumption;
|
|
this.comprehensivePlantPowerConsumption = comprehensivePlantPowerConsumption;
|
|
}
|
|
}
|
|
|
|
|
|
- public BigDecimal getPlantPowerRate() {
|
|
|
|
- return plantPowerRate;
|
|
|
|
|
|
+ public Double getPlantPowerRate() {
|
|
|
|
+ return NumberUtil.round(plantPowerRate,2).doubleValue();
|
|
}
|
|
}
|
|
|
|
|
|
- public void setPlantPowerRate(BigDecimal plantPowerRate) {
|
|
|
|
|
|
+ public void setPlantPowerRate(Double plantPowerRate) {
|
|
this.plantPowerRate = plantPowerRate;
|
|
this.plantPowerRate = plantPowerRate;
|
|
}
|
|
}
|
|
|
|
|
|
- public BigDecimal getComprehensivePlantPowerRate() {
|
|
|
|
- return comprehensivePlantPowerRate;
|
|
|
|
|
|
+ public Double getComprehensivePlantPowerRate() {
|
|
|
|
+ return NumberUtil.round(comprehensivePlantPowerRate,2).doubleValue();
|
|
}
|
|
}
|
|
|
|
|
|
- public void setComprehensivePlantPowerRate(BigDecimal comprehensivePlantPowerRate) {
|
|
|
|
|
|
+ public void setComprehensivePlantPowerRate(Double comprehensivePlantPowerRate) {
|
|
this.comprehensivePlantPowerRate = comprehensivePlantPowerRate;
|
|
this.comprehensivePlantPowerRate = comprehensivePlantPowerRate;
|
|
}
|
|
}
|
|
|
|
|
|
- public BigDecimal getPlantLossRate() {
|
|
|
|
- return plantLossRate;
|
|
|
|
|
|
+ public Double getPlantLossRate() {
|
|
|
|
+ return NumberUtil.round(plantLossRate,2).doubleValue();
|
|
}
|
|
}
|
|
|
|
|
|
- public void setPlantLossRate(BigDecimal plantLossRate) {
|
|
|
|
|
|
+ public void setPlantLossRate(Double plantLossRate) {
|
|
this.plantLossRate = plantLossRate;
|
|
this.plantLossRate = plantLossRate;
|
|
}
|
|
}
|
|
|
|
|
|
- public BigDecimal getInverterLoss() {
|
|
|
|
- return inverterLoss;
|
|
|
|
|
|
+ public Double getInverterLoss() {
|
|
|
|
+ return NumberUtil.round(inverterLoss,2).doubleValue();
|
|
}
|
|
}
|
|
|
|
|
|
- public void setInverterLoss(BigDecimal inverterLoss) {
|
|
|
|
|
|
+ public void setInverterLoss(Double inverterLoss) {
|
|
this.inverterLoss = inverterLoss;
|
|
this.inverterLoss = inverterLoss;
|
|
}
|
|
}
|
|
|
|
|
|
- public BigDecimal getCollectorLineAndBoxTransformerLoss() {
|
|
|
|
- return collectorLineAndBoxTransformerLoss;
|
|
|
|
|
|
+ public Double getCollectorLineAndBoxTransformerLoss() {
|
|
|
|
+ return NumberUtil.round(collectorLineAndBoxTransformerLoss,2).doubleValue();
|
|
}
|
|
}
|
|
|
|
|
|
- public void setCollectorLineAndBoxTransformerLoss(BigDecimal collectorLineAndBoxTransformerLoss) {
|
|
|
|
|
|
+ public void setCollectorLineAndBoxTransformerLoss(Double collectorLineAndBoxTransformerLoss) {
|
|
this.collectorLineAndBoxTransformerLoss = collectorLineAndBoxTransformerLoss;
|
|
this.collectorLineAndBoxTransformerLoss = collectorLineAndBoxTransformerLoss;
|
|
}
|
|
}
|
|
|
|
|
|
- public BigDecimal getBoosterStationLoss() {
|
|
|
|
- return boosterStationLoss;
|
|
|
|
|
|
+ public Double getBoosterStationLoss() {
|
|
|
|
+ return NumberUtil.round(boosterStationLoss,2).doubleValue();
|
|
}
|
|
}
|
|
|
|
|
|
- public void setBoosterStationLoss(BigDecimal boosterStationLoss) {
|
|
|
|
|
|
+ public void setBoosterStationLoss(Double boosterStationLoss) {
|
|
this.boosterStationLoss = boosterStationLoss;
|
|
this.boosterStationLoss = boosterStationLoss;
|
|
}
|
|
}
|
|
|
|
|
|
- public BigDecimal getSolarPowerStationEfficiency() {
|
|
|
|
- return solarPowerStationEfficiency;
|
|
|
|
|
|
+ public Double getSolarPowerStationEfficiency() {
|
|
|
|
+ return NumberUtil.round(solarPowerStationEfficiency,2).doubleValue();
|
|
}
|
|
}
|
|
|
|
|
|
- public void setSolarPowerStationEfficiency(BigDecimal solarPowerStationEfficiency) {
|
|
|
|
|
|
+ public void setSolarPowerStationEfficiency(Double solarPowerStationEfficiency) {
|
|
this.solarPowerStationEfficiency = solarPowerStationEfficiency;
|
|
this.solarPowerStationEfficiency = solarPowerStationEfficiency;
|
|
}
|
|
}
|
|
|
|
|
|
- public BigDecimal getMaxOutput() {
|
|
|
|
- return maxOutput;
|
|
|
|
|
|
+ public Double getMaxOutput() {
|
|
|
|
+ return NumberUtil.round(maxOutput,2).doubleValue();
|
|
}
|
|
}
|
|
|
|
|
|
- public void setMaxOutput(BigDecimal maxOutput) {
|
|
|
|
|
|
+ public void setMaxOutput(Double maxOutput) {
|
|
this.maxOutput = maxOutput;
|
|
this.maxOutput = maxOutput;
|
|
}
|
|
}
|
|
|
|
|
|
- public BigDecimal getInverterConversionEfficiency() {
|
|
|
|
- return inverterConversionEfficiency;
|
|
|
|
|
|
+ public Double getInverterConversionEfficiency() {
|
|
|
|
+ return NumberUtil.round(inverterConversionEfficiency,2).doubleValue();
|
|
}
|
|
}
|
|
|
|
|
|
- public void setInverterConversionEfficiency(BigDecimal inverterConversionEfficiency) {
|
|
|
|
|
|
+ public void setInverterConversionEfficiency(Double inverterConversionEfficiency) {
|
|
this.inverterConversionEfficiency = inverterConversionEfficiency;
|
|
this.inverterConversionEfficiency = inverterConversionEfficiency;
|
|
}
|
|
}
|
|
|
|
|
|
- public BigDecimal getSolarArrayEfficiency() {
|
|
|
|
- return solarArrayEfficiency;
|
|
|
|
|
|
+ public Double getSolarArrayEfficiency() {
|
|
|
|
+ return NumberUtil.round(solarArrayEfficiency,2).doubleValue();
|
|
}
|
|
}
|
|
|
|
|
|
- public void setSolarArrayEfficiency(BigDecimal solarArrayEfficiency) {
|
|
|
|
|
|
+ public void setSolarArrayEfficiency(Double solarArrayEfficiency) {
|
|
this.solarArrayEfficiency = solarArrayEfficiency;
|
|
this.solarArrayEfficiency = solarArrayEfficiency;
|
|
}
|
|
}
|
|
|
|
|
|
- public BigDecimal getPowerGenerationDuration() {
|
|
|
|
- return powerGenerationDuration;
|
|
|
|
|
|
+ public Double getPowerGenerationDuration() {
|
|
|
|
+ return NumberUtil.round(powerGenerationDuration,2).doubleValue();
|
|
}
|
|
}
|
|
|
|
|
|
- public void setPowerGenerationDuration(BigDecimal powerGenerationDuration) {
|
|
|
|
|
|
+ public void setPowerGenerationDuration(Double powerGenerationDuration) {
|
|
this.powerGenerationDuration = powerGenerationDuration;
|
|
this.powerGenerationDuration = powerGenerationDuration;
|
|
}
|
|
}
|
|
|
|
|
|
- public BigDecimal getDowntimeDuration() {
|
|
|
|
- return downtimeDuration;
|
|
|
|
|
|
+ public Double getDowntimeDuration() {
|
|
|
|
+ return NumberUtil.round(downtimeDuration,2).doubleValue();
|
|
}
|
|
}
|
|
|
|
|
|
- public void setDowntimeDuration(BigDecimal downtimeDuration) {
|
|
|
|
|
|
+ public void setDowntimeDuration(Double downtimeDuration) {
|
|
this.downtimeDuration = downtimeDuration;
|
|
this.downtimeDuration = downtimeDuration;
|
|
}
|
|
}
|
|
|
|
|
|
- public BigDecimal getInterruptionDuration() {
|
|
|
|
- return interruptionDuration;
|
|
|
|
|
|
+ public Double getInterruptionDuration() {
|
|
|
|
+ return NumberUtil.round(interruptionDuration,2).doubleValue();
|
|
}
|
|
}
|
|
|
|
|
|
- public void setInterruptionDuration(BigDecimal interruptionDuration) {
|
|
|
|
|
|
+ public void setInterruptionDuration(Double interruptionDuration) {
|
|
this.interruptionDuration = interruptionDuration;
|
|
this.interruptionDuration = interruptionDuration;
|
|
}
|
|
}
|
|
|
|
|