|
@@ -0,0 +1,469 @@
|
|
|
+package com.gyee.runeconomy.model.fitting;
|
|
|
+
|
|
|
+import com.baomidou.mybatisplus.annotation.IdType;
|
|
|
+import com.baomidou.mybatisplus.annotation.TableId;
|
|
|
+import com.baomidou.mybatisplus.annotation.TableName;
|
|
|
+import io.swagger.annotations.ApiModel;
|
|
|
+import io.swagger.annotations.ApiModelProperty;
|
|
|
+
|
|
|
+import java.io.Serializable;
|
|
|
+import java.math.BigDecimal;
|
|
|
+import java.time.LocalDate;
|
|
|
+
|
|
|
+/**
|
|
|
+ * <p>
|
|
|
+ *
|
|
|
+ * </p>
|
|
|
+ *
|
|
|
+ * @author gfhd
|
|
|
+ * @since 2023-07-05
|
|
|
+ */
|
|
|
+@TableName("pro_econ_station_analysis")
|
|
|
+@ApiModel(value = "ProEconStationAnalysis对象", description = "")
|
|
|
+public class ProEconStationAnalysis implements Serializable {
|
|
|
+
|
|
|
+ private static final long serialVersionUID = 1L;
|
|
|
+
|
|
|
+ @TableId(value = "id", type = IdType.AUTO)
|
|
|
+ private Integer id;
|
|
|
+
|
|
|
+ private String equipmentId;
|
|
|
+
|
|
|
+ private LocalDate recordDate;
|
|
|
+
|
|
|
+ private String nemName;
|
|
|
+
|
|
|
+ private String aname;
|
|
|
+
|
|
|
+ private String windpowerstationId;
|
|
|
+
|
|
|
+ private String windpowerstationAname;
|
|
|
+
|
|
|
+ private String companyId;
|
|
|
+
|
|
|
+ @ApiModelProperty("年平均风速m/s")
|
|
|
+ private BigDecimal yearAverageWindSpeed;
|
|
|
+
|
|
|
+ @ApiModelProperty("平均温度°C")
|
|
|
+ private BigDecimal averageTemperature;
|
|
|
+
|
|
|
+ @ApiModelProperty("相对湿度%")
|
|
|
+ private BigDecimal relativeHumidity;
|
|
|
+
|
|
|
+ @ApiModelProperty("水平面总辐射量kWh/㎡")
|
|
|
+ private BigDecimal horizontalTotalRadiation;
|
|
|
+
|
|
|
+ @ApiModelProperty("倾斜面总辐射量kWh/㎡")
|
|
|
+ private BigDecimal inclinedTotalRadiation;
|
|
|
+
|
|
|
+ @ApiModelProperty("日照时数h")
|
|
|
+ private BigDecimal sunshineDuration;
|
|
|
+
|
|
|
+ @ApiModelProperty("发电量kWh")
|
|
|
+ private BigDecimal powerGeneration;
|
|
|
+
|
|
|
+ @ApiModelProperty("上网电量kWh")
|
|
|
+ private BigDecimal gridPower;
|
|
|
+
|
|
|
+ @ApiModelProperty("购网电量kWh")
|
|
|
+ private BigDecimal purchasePower;
|
|
|
+
|
|
|
+ @ApiModelProperty("逆变器输入电量kWh")
|
|
|
+ private BigDecimal inverterInputPower;
|
|
|
+
|
|
|
+ @ApiModelProperty("逆变器输出电量kWh")
|
|
|
+ private BigDecimal inverterOutputPower;
|
|
|
+
|
|
|
+ @ApiModelProperty("等效利用小时数(年利用小时数)h")
|
|
|
+ private BigDecimal equivalentHours;
|
|
|
+
|
|
|
+ @ApiModelProperty("弃光电量kWh")
|
|
|
+ private BigDecimal abandonedLightPower;
|
|
|
+
|
|
|
+ @ApiModelProperty("弃光率%")
|
|
|
+ private BigDecimal abandonedLightRate;
|
|
|
+
|
|
|
+ @ApiModelProperty("用电量kWh")
|
|
|
+ private BigDecimal plantPowerConsumption;
|
|
|
+
|
|
|
+ @ApiModelProperty("综合厂用电量kWh")
|
|
|
+ private BigDecimal comprehensivePlantPowerConsumption;
|
|
|
+
|
|
|
+ @ApiModelProperty("用电率%")
|
|
|
+ private BigDecimal plantPowerRate;
|
|
|
+
|
|
|
+ @ApiModelProperty("综合厂用电率%")
|
|
|
+ private BigDecimal comprehensivePlantPowerRate;
|
|
|
+
|
|
|
+ @ApiModelProperty("厂损率%")
|
|
|
+ private BigDecimal plantLossRate;
|
|
|
+
|
|
|
+ @ApiModelProperty("逆变器损耗kWh")
|
|
|
+ private BigDecimal inverterLoss;
|
|
|
+
|
|
|
+ @ApiModelProperty("集电线路及箱变损耗kWh")
|
|
|
+ private BigDecimal collectorLineAndBoxTransformerLoss;
|
|
|
+
|
|
|
+ @ApiModelProperty("升压站损耗kWh")
|
|
|
+ private BigDecimal boosterStationLoss;
|
|
|
+
|
|
|
+ @ApiModelProperty("光伏电站整体效率")
|
|
|
+ private BigDecimal solarPowerStationEfficiency;
|
|
|
+
|
|
|
+ @ApiModelProperty("最大出力kW")
|
|
|
+ private BigDecimal maxOutput;
|
|
|
+
|
|
|
+ @ApiModelProperty("逆变器转换效率%")
|
|
|
+ private BigDecimal inverterConversionEfficiency;
|
|
|
+
|
|
|
+ @ApiModelProperty("光伏方阵效率%")
|
|
|
+ private BigDecimal solarArrayEfficiency;
|
|
|
+
|
|
|
+ @ApiModelProperty("发电时长h")
|
|
|
+ private BigDecimal powerGenerationDuration;
|
|
|
+
|
|
|
+ @ApiModelProperty("停机时长h")
|
|
|
+ private BigDecimal downtimeDuration;
|
|
|
+
|
|
|
+ @ApiModelProperty("中断时长h")
|
|
|
+ private BigDecimal interruptionDuration;
|
|
|
+
|
|
|
+ public Integer getId() {
|
|
|
+ return id;
|
|
|
+ }
|
|
|
+
|
|
|
+ public void setId(Integer id) {
|
|
|
+ this.id = id;
|
|
|
+ }
|
|
|
+
|
|
|
+ public String getEquipmentId() {
|
|
|
+ return equipmentId;
|
|
|
+ }
|
|
|
+
|
|
|
+ public void setEquipmentId(String equipmentId) {
|
|
|
+ this.equipmentId = equipmentId;
|
|
|
+ }
|
|
|
+
|
|
|
+ public LocalDate getRecordDate() {
|
|
|
+ return recordDate;
|
|
|
+ }
|
|
|
+
|
|
|
+ public void setRecordDate(LocalDate recordDate) {
|
|
|
+ this.recordDate = recordDate;
|
|
|
+ }
|
|
|
+
|
|
|
+ public String getNemName() {
|
|
|
+ return nemName;
|
|
|
+ }
|
|
|
+
|
|
|
+ public void setNemName(String nemName) {
|
|
|
+ this.nemName = nemName;
|
|
|
+ }
|
|
|
+
|
|
|
+ public String getAname() {
|
|
|
+ return aname;
|
|
|
+ }
|
|
|
+
|
|
|
+ public void setAname(String aname) {
|
|
|
+ this.aname = aname;
|
|
|
+ }
|
|
|
+
|
|
|
+ public String getWindpowerstationId() {
|
|
|
+ return windpowerstationId;
|
|
|
+ }
|
|
|
+
|
|
|
+ public void setWindpowerstationId(String windpowerstationId) {
|
|
|
+ this.windpowerstationId = windpowerstationId;
|
|
|
+ }
|
|
|
+
|
|
|
+ public String getWindpowerstationAname() {
|
|
|
+ return windpowerstationAname;
|
|
|
+ }
|
|
|
+
|
|
|
+ public void setWindpowerstationAname(String windpowerstationAname) {
|
|
|
+ this.windpowerstationAname = windpowerstationAname;
|
|
|
+ }
|
|
|
+
|
|
|
+ public String getCompanyId() {
|
|
|
+ return companyId;
|
|
|
+ }
|
|
|
+
|
|
|
+ public void setCompanyId(String companyId) {
|
|
|
+ this.companyId = companyId;
|
|
|
+ }
|
|
|
+
|
|
|
+ public BigDecimal getYearAverageWindSpeed() {
|
|
|
+ return yearAverageWindSpeed;
|
|
|
+ }
|
|
|
+
|
|
|
+ public void setYearAverageWindSpeed(BigDecimal yearAverageWindSpeed) {
|
|
|
+ this.yearAverageWindSpeed = yearAverageWindSpeed;
|
|
|
+ }
|
|
|
+
|
|
|
+ public BigDecimal getAverageTemperature() {
|
|
|
+ return averageTemperature;
|
|
|
+ }
|
|
|
+
|
|
|
+ public void setAverageTemperature(BigDecimal averageTemperature) {
|
|
|
+ this.averageTemperature = averageTemperature;
|
|
|
+ }
|
|
|
+
|
|
|
+ public BigDecimal getRelativeHumidity() {
|
|
|
+ return relativeHumidity;
|
|
|
+ }
|
|
|
+
|
|
|
+ public void setRelativeHumidity(BigDecimal relativeHumidity) {
|
|
|
+ this.relativeHumidity = relativeHumidity;
|
|
|
+ }
|
|
|
+
|
|
|
+ public BigDecimal getHorizontalTotalRadiation() {
|
|
|
+ return horizontalTotalRadiation;
|
|
|
+ }
|
|
|
+
|
|
|
+ public void setHorizontalTotalRadiation(BigDecimal horizontalTotalRadiation) {
|
|
|
+ this.horizontalTotalRadiation = horizontalTotalRadiation;
|
|
|
+ }
|
|
|
+
|
|
|
+ public BigDecimal getInclinedTotalRadiation() {
|
|
|
+ return inclinedTotalRadiation;
|
|
|
+ }
|
|
|
+
|
|
|
+ public void setInclinedTotalRadiation(BigDecimal inclinedTotalRadiation) {
|
|
|
+ this.inclinedTotalRadiation = inclinedTotalRadiation;
|
|
|
+ }
|
|
|
+
|
|
|
+ public BigDecimal getSunshineDuration() {
|
|
|
+ return sunshineDuration;
|
|
|
+ }
|
|
|
+
|
|
|
+ public void setSunshineDuration(BigDecimal sunshineDuration) {
|
|
|
+ this.sunshineDuration = sunshineDuration;
|
|
|
+ }
|
|
|
+
|
|
|
+ public BigDecimal getPowerGeneration() {
|
|
|
+ return powerGeneration;
|
|
|
+ }
|
|
|
+
|
|
|
+ public void setPowerGeneration(BigDecimal powerGeneration) {
|
|
|
+ this.powerGeneration = powerGeneration;
|
|
|
+ }
|
|
|
+
|
|
|
+ public BigDecimal getGridPower() {
|
|
|
+ return gridPower;
|
|
|
+ }
|
|
|
+
|
|
|
+ public void setGridPower(BigDecimal gridPower) {
|
|
|
+ this.gridPower = gridPower;
|
|
|
+ }
|
|
|
+
|
|
|
+ public BigDecimal getPurchasePower() {
|
|
|
+ return purchasePower;
|
|
|
+ }
|
|
|
+
|
|
|
+ public void setPurchasePower(BigDecimal purchasePower) {
|
|
|
+ this.purchasePower = purchasePower;
|
|
|
+ }
|
|
|
+
|
|
|
+ public BigDecimal getInverterInputPower() {
|
|
|
+ return inverterInputPower;
|
|
|
+ }
|
|
|
+
|
|
|
+ public void setInverterInputPower(BigDecimal inverterInputPower) {
|
|
|
+ this.inverterInputPower = inverterInputPower;
|
|
|
+ }
|
|
|
+
|
|
|
+ public BigDecimal getInverterOutputPower() {
|
|
|
+ return inverterOutputPower;
|
|
|
+ }
|
|
|
+
|
|
|
+ public void setInverterOutputPower(BigDecimal inverterOutputPower) {
|
|
|
+ this.inverterOutputPower = inverterOutputPower;
|
|
|
+ }
|
|
|
+
|
|
|
+ public BigDecimal getEquivalentHours() {
|
|
|
+ return equivalentHours;
|
|
|
+ }
|
|
|
+
|
|
|
+ public void setEquivalentHours(BigDecimal equivalentHours) {
|
|
|
+ this.equivalentHours = equivalentHours;
|
|
|
+ }
|
|
|
+
|
|
|
+ public BigDecimal getAbandonedLightPower() {
|
|
|
+ return abandonedLightPower;
|
|
|
+ }
|
|
|
+
|
|
|
+ public void setAbandonedLightPower(BigDecimal abandonedLightPower) {
|
|
|
+ this.abandonedLightPower = abandonedLightPower;
|
|
|
+ }
|
|
|
+
|
|
|
+ public BigDecimal getAbandonedLightRate() {
|
|
|
+ return abandonedLightRate;
|
|
|
+ }
|
|
|
+
|
|
|
+ public void setAbandonedLightRate(BigDecimal abandonedLightRate) {
|
|
|
+ this.abandonedLightRate = abandonedLightRate;
|
|
|
+ }
|
|
|
+
|
|
|
+ public BigDecimal getPlantPowerConsumption() {
|
|
|
+ return plantPowerConsumption;
|
|
|
+ }
|
|
|
+
|
|
|
+ public void setPlantPowerConsumption(BigDecimal plantPowerConsumption) {
|
|
|
+ this.plantPowerConsumption = plantPowerConsumption;
|
|
|
+ }
|
|
|
+
|
|
|
+ public BigDecimal getComprehensivePlantPowerConsumption() {
|
|
|
+ return comprehensivePlantPowerConsumption;
|
|
|
+ }
|
|
|
+
|
|
|
+ public void setComprehensivePlantPowerConsumption(BigDecimal comprehensivePlantPowerConsumption) {
|
|
|
+ this.comprehensivePlantPowerConsumption = comprehensivePlantPowerConsumption;
|
|
|
+ }
|
|
|
+
|
|
|
+ public BigDecimal getPlantPowerRate() {
|
|
|
+ return plantPowerRate;
|
|
|
+ }
|
|
|
+
|
|
|
+ public void setPlantPowerRate(BigDecimal plantPowerRate) {
|
|
|
+ this.plantPowerRate = plantPowerRate;
|
|
|
+ }
|
|
|
+
|
|
|
+ public BigDecimal getComprehensivePlantPowerRate() {
|
|
|
+ return comprehensivePlantPowerRate;
|
|
|
+ }
|
|
|
+
|
|
|
+ public void setComprehensivePlantPowerRate(BigDecimal comprehensivePlantPowerRate) {
|
|
|
+ this.comprehensivePlantPowerRate = comprehensivePlantPowerRate;
|
|
|
+ }
|
|
|
+
|
|
|
+ public BigDecimal getPlantLossRate() {
|
|
|
+ return plantLossRate;
|
|
|
+ }
|
|
|
+
|
|
|
+ public void setPlantLossRate(BigDecimal plantLossRate) {
|
|
|
+ this.plantLossRate = plantLossRate;
|
|
|
+ }
|
|
|
+
|
|
|
+ public BigDecimal getInverterLoss() {
|
|
|
+ return inverterLoss;
|
|
|
+ }
|
|
|
+
|
|
|
+ public void setInverterLoss(BigDecimal inverterLoss) {
|
|
|
+ this.inverterLoss = inverterLoss;
|
|
|
+ }
|
|
|
+
|
|
|
+ public BigDecimal getCollectorLineAndBoxTransformerLoss() {
|
|
|
+ return collectorLineAndBoxTransformerLoss;
|
|
|
+ }
|
|
|
+
|
|
|
+ public void setCollectorLineAndBoxTransformerLoss(BigDecimal collectorLineAndBoxTransformerLoss) {
|
|
|
+ this.collectorLineAndBoxTransformerLoss = collectorLineAndBoxTransformerLoss;
|
|
|
+ }
|
|
|
+
|
|
|
+ public BigDecimal getBoosterStationLoss() {
|
|
|
+ return boosterStationLoss;
|
|
|
+ }
|
|
|
+
|
|
|
+ public void setBoosterStationLoss(BigDecimal boosterStationLoss) {
|
|
|
+ this.boosterStationLoss = boosterStationLoss;
|
|
|
+ }
|
|
|
+
|
|
|
+ public BigDecimal getSolarPowerStationEfficiency() {
|
|
|
+ return solarPowerStationEfficiency;
|
|
|
+ }
|
|
|
+
|
|
|
+ public void setSolarPowerStationEfficiency(BigDecimal solarPowerStationEfficiency) {
|
|
|
+ this.solarPowerStationEfficiency = solarPowerStationEfficiency;
|
|
|
+ }
|
|
|
+
|
|
|
+ public BigDecimal getMaxOutput() {
|
|
|
+ return maxOutput;
|
|
|
+ }
|
|
|
+
|
|
|
+ public void setMaxOutput(BigDecimal maxOutput) {
|
|
|
+ this.maxOutput = maxOutput;
|
|
|
+ }
|
|
|
+
|
|
|
+ public BigDecimal getInverterConversionEfficiency() {
|
|
|
+ return inverterConversionEfficiency;
|
|
|
+ }
|
|
|
+
|
|
|
+ public void setInverterConversionEfficiency(BigDecimal inverterConversionEfficiency) {
|
|
|
+ this.inverterConversionEfficiency = inverterConversionEfficiency;
|
|
|
+ }
|
|
|
+
|
|
|
+ public BigDecimal getSolarArrayEfficiency() {
|
|
|
+ return solarArrayEfficiency;
|
|
|
+ }
|
|
|
+
|
|
|
+ public void setSolarArrayEfficiency(BigDecimal solarArrayEfficiency) {
|
|
|
+ this.solarArrayEfficiency = solarArrayEfficiency;
|
|
|
+ }
|
|
|
+
|
|
|
+ public BigDecimal getPowerGenerationDuration() {
|
|
|
+ return powerGenerationDuration;
|
|
|
+ }
|
|
|
+
|
|
|
+ public void setPowerGenerationDuration(BigDecimal powerGenerationDuration) {
|
|
|
+ this.powerGenerationDuration = powerGenerationDuration;
|
|
|
+ }
|
|
|
+
|
|
|
+ public BigDecimal getDowntimeDuration() {
|
|
|
+ return downtimeDuration;
|
|
|
+ }
|
|
|
+
|
|
|
+ public void setDowntimeDuration(BigDecimal downtimeDuration) {
|
|
|
+ this.downtimeDuration = downtimeDuration;
|
|
|
+ }
|
|
|
+
|
|
|
+ public BigDecimal getInterruptionDuration() {
|
|
|
+ return interruptionDuration;
|
|
|
+ }
|
|
|
+
|
|
|
+ public void setInterruptionDuration(BigDecimal interruptionDuration) {
|
|
|
+ this.interruptionDuration = interruptionDuration;
|
|
|
+ }
|
|
|
+
|
|
|
+ @Override
|
|
|
+ public String toString() {
|
|
|
+ return "ProEconStationAnalysis{" +
|
|
|
+ "id = " + id +
|
|
|
+ ", equipmentId = " + equipmentId +
|
|
|
+ ", recordDate = " + recordDate +
|
|
|
+ ", nemName = " + nemName +
|
|
|
+ ", aname = " + aname +
|
|
|
+ ", windpowerstationId = " + windpowerstationId +
|
|
|
+ ", windpowerstationAname = " + windpowerstationAname +
|
|
|
+ ", companyId = " + companyId +
|
|
|
+ ", yearAverageWindSpeed = " + yearAverageWindSpeed +
|
|
|
+ ", averageTemperature = " + averageTemperature +
|
|
|
+ ", relativeHumidity = " + relativeHumidity +
|
|
|
+ ", horizontalTotalRadiation = " + horizontalTotalRadiation +
|
|
|
+ ", inclinedTotalRadiation = " + inclinedTotalRadiation +
|
|
|
+ ", sunshineDuration = " + sunshineDuration +
|
|
|
+ ", powerGeneration = " + powerGeneration +
|
|
|
+ ", gridPower = " + gridPower +
|
|
|
+ ", purchasePower = " + purchasePower +
|
|
|
+ ", inverterInputPower = " + inverterInputPower +
|
|
|
+ ", inverterOutputPower = " + inverterOutputPower +
|
|
|
+ ", equivalentHours = " + equivalentHours +
|
|
|
+ ", abandonedLightPower = " + abandonedLightPower +
|
|
|
+ ", abandonedLightRate = " + abandonedLightRate +
|
|
|
+ ", plantPowerConsumption = " + plantPowerConsumption +
|
|
|
+ ", comprehensivePlantPowerConsumption = " + comprehensivePlantPowerConsumption +
|
|
|
+ ", plantPowerRate = " + plantPowerRate +
|
|
|
+ ", comprehensivePlantPowerRate = " + comprehensivePlantPowerRate +
|
|
|
+ ", plantLossRate = " + plantLossRate +
|
|
|
+ ", inverterLoss = " + inverterLoss +
|
|
|
+ ", collectorLineAndBoxTransformerLoss = " + collectorLineAndBoxTransformerLoss +
|
|
|
+ ", boosterStationLoss = " + boosterStationLoss +
|
|
|
+ ", solarPowerStationEfficiency = " + solarPowerStationEfficiency +
|
|
|
+ ", maxOutput = " + maxOutput +
|
|
|
+ ", inverterConversionEfficiency = " + inverterConversionEfficiency +
|
|
|
+ ", solarArrayEfficiency = " + solarArrayEfficiency +
|
|
|
+ ", powerGenerationDuration = " + powerGenerationDuration +
|
|
|
+ ", downtimeDuration = " + downtimeDuration +
|
|
|
+ ", interruptionDuration = " + interruptionDuration +
|
|
|
+ "}";
|
|
|
+ }
|
|
|
+}
|