|
@@ -0,0 +1,148 @@
|
|
|
+package com.gyee.runeconomy.model.fitting;
|
|
|
+
|
|
|
+import com.baomidou.mybatisplus.annotation.TableName;
|
|
|
+
|
|
|
+import java.io.Serializable;
|
|
|
+import java.math.BigDecimal;
|
|
|
+import java.time.LocalDate;
|
|
|
+
|
|
|
+/**
|
|
|
+ * <p>
|
|
|
+ *
|
|
|
+ * </p>
|
|
|
+ *
|
|
|
+ * @author gfhd
|
|
|
+ * @since 2023-06-30
|
|
|
+ */
|
|
|
+@TableName("pro_econ_analysis_clean")
|
|
|
+public class ProEconAnalysisClean implements Serializable {
|
|
|
+
|
|
|
+ private static final long serialVersionUID = 1L;
|
|
|
+
|
|
|
+ private String id;
|
|
|
+
|
|
|
+ private String nemCode;
|
|
|
+
|
|
|
+ private String nemName;
|
|
|
+
|
|
|
+ private String aname;
|
|
|
+
|
|
|
+ private LocalDate date;
|
|
|
+
|
|
|
+ private String companyId;
|
|
|
+
|
|
|
+ private String windpowerstationId;
|
|
|
+
|
|
|
+ private String windturbineId;
|
|
|
+
|
|
|
+ private BigDecimal actualPower;
|
|
|
+
|
|
|
+ private BigDecimal theoreticalPower;
|
|
|
+
|
|
|
+ private BigDecimal curveDeviationRate;
|
|
|
+
|
|
|
+ public String getId() {
|
|
|
+ return id;
|
|
|
+ }
|
|
|
+
|
|
|
+ public void setId(String id) {
|
|
|
+ this.id = id;
|
|
|
+ }
|
|
|
+
|
|
|
+ public String getNemCode() {
|
|
|
+ return nemCode;
|
|
|
+ }
|
|
|
+
|
|
|
+ public void setNemCode(String nemCode) {
|
|
|
+ this.nemCode = nemCode;
|
|
|
+ }
|
|
|
+
|
|
|
+ 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 LocalDate getDate() {
|
|
|
+ return date;
|
|
|
+ }
|
|
|
+
|
|
|
+ public void setDate(LocalDate date) {
|
|
|
+ this.date = date;
|
|
|
+ }
|
|
|
+
|
|
|
+ public String getCompanyId() {
|
|
|
+ return companyId;
|
|
|
+ }
|
|
|
+
|
|
|
+ public void setCompanyId(String companyId) {
|
|
|
+ this.companyId = companyId;
|
|
|
+ }
|
|
|
+
|
|
|
+ public String getWindpowerstationId() {
|
|
|
+ return windpowerstationId;
|
|
|
+ }
|
|
|
+
|
|
|
+ public void setWindpowerstationId(String windpowerstationId) {
|
|
|
+ this.windpowerstationId = windpowerstationId;
|
|
|
+ }
|
|
|
+
|
|
|
+ public String getWindturbineId() {
|
|
|
+ return windturbineId;
|
|
|
+ }
|
|
|
+
|
|
|
+ public void setWindturbineId(String windturbineId) {
|
|
|
+ this.windturbineId = windturbineId;
|
|
|
+ }
|
|
|
+
|
|
|
+ public BigDecimal getActualPower() {
|
|
|
+ return actualPower;
|
|
|
+ }
|
|
|
+
|
|
|
+ public void setActualPower(BigDecimal actualPower) {
|
|
|
+ this.actualPower = actualPower;
|
|
|
+ }
|
|
|
+
|
|
|
+ public BigDecimal getTheoreticalPower() {
|
|
|
+ return theoreticalPower;
|
|
|
+ }
|
|
|
+
|
|
|
+ public void setTheoreticalPower(BigDecimal theoreticalPower) {
|
|
|
+ this.theoreticalPower = theoreticalPower;
|
|
|
+ }
|
|
|
+
|
|
|
+ public BigDecimal getCurveDeviationRate() {
|
|
|
+ return curveDeviationRate;
|
|
|
+ }
|
|
|
+
|
|
|
+ public void setCurveDeviationRate(BigDecimal curveDeviationRate) {
|
|
|
+ this.curveDeviationRate = curveDeviationRate;
|
|
|
+ }
|
|
|
+
|
|
|
+ @Override
|
|
|
+ public String toString() {
|
|
|
+ return "ProEconAnalysisClean{" +
|
|
|
+ "id = " + id +
|
|
|
+ ", nemCode = " + nemCode +
|
|
|
+ ", nemName = " + nemName +
|
|
|
+ ", aname = " + aname +
|
|
|
+ ", date = " + date +
|
|
|
+ ", companyId = " + companyId +
|
|
|
+ ", windpowerstationId = " + windpowerstationId +
|
|
|
+ ", windturbineId = " + windturbineId +
|
|
|
+ ", actualPower = " + actualPower +
|
|
|
+ ", theoreticalPower = " + theoreticalPower +
|
|
|
+ ", curveDeviationRate = " + curveDeviationRate +
|
|
|
+ "}";
|
|
|
+ }
|
|
|
+}
|