فهرست منبع

ProEconAnalysisCleanServiceImpl

xushili 1 سال پیش
والد
کامیت
fe99d8e6ae

+ 16 - 0
web/runeconomy-jjyx/src/main/java/com/gyee/runeconomy/mapper/fitting/ProEconAnalysisCleanMapper.java

@@ -0,0 +1,16 @@
+package com.gyee.runeconomy.mapper.fitting;
+
+import com.baomidou.mybatisplus.core.mapper.BaseMapper;
+import com.gyee.runeconomy.model.fitting.ProEconAnalysisClean;
+
+/**
+ * <p>
+ *  Mapper 接口
+ * </p>
+ *
+ * @author gfhd
+ * @since 2023-06-30
+ */
+public interface ProEconAnalysisCleanMapper extends BaseMapper<ProEconAnalysisClean> {
+
+}

+ 148 - 0
web/runeconomy-jjyx/src/main/java/com/gyee/runeconomy/model/fitting/ProEconAnalysisClean.java

@@ -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 +
+        "}";
+    }
+}

+ 16 - 0
web/runeconomy-jjyx/src/main/java/com/gyee/runeconomy/service/fitting/IProEconAnalysisCleanService.java

@@ -0,0 +1,16 @@
+package com.gyee.runeconomy.service.fitting;
+
+import com.baomidou.mybatisplus.extension.service.IService;
+import com.gyee.runeconomy.model.fitting.ProEconAnalysisClean;
+
+/**
+ * <p>
+ *  服务类
+ * </p>
+ *
+ * @author gfhd
+ * @since 2023-06-30
+ */
+public interface IProEconAnalysisCleanService extends IService<ProEconAnalysisClean> {
+
+}

+ 19 - 0
web/runeconomy-jjyx/src/main/java/com/gyee/runeconomy/service/fitting/ProEconAnalysisCleanServiceImpl.java

@@ -0,0 +1,19 @@
+package com.gyee.runeconomy.service.fitting;
+
+import com.baomidou.mybatisplus.extension.service.impl.ServiceImpl;
+import com.gyee.runeconomy.mapper.fitting.ProEconAnalysisCleanMapper;
+import com.gyee.runeconomy.model.fitting.ProEconAnalysisClean;
+import org.springframework.stereotype.Service;
+
+/**
+ * <p>
+ *  服务实现类
+ * </p>
+ *
+ * @author gfhd
+ * @since 2023-06-30
+ */
+@Service
+public class ProEconAnalysisCleanServiceImpl extends ServiceImpl<ProEconAnalysisCleanMapper, ProEconAnalysisClean> implements IProEconAnalysisCleanService {
+
+}