浏览代码

场站字段调整

wangb 2 年之前
父节点
当前提交
66eaf7c1a0

+ 1 - 1
web/backmanagerconfig-xktj/src/main/java/com/gyee/backconfig/controller/ProBasicEquipmentController.java

@@ -33,7 +33,7 @@ public class ProBasicEquipmentController {
     /**
      * 查询
      * @param id
-     * @param code
+     * @param nemCode
      * @param companyId
      * @param regionId
      * @param windpowerstationId

+ 1 - 1
web/backmanagerconfig-xktj/src/main/java/com/gyee/backconfig/controller/ProBasicLineController.java

@@ -33,7 +33,7 @@ public class ProBasicLineController {
     /**
      * 查询
      * @param id
-     * @param code
+     * @param nemCode
      * @param name
      * @param aname
      * @param pageNum

+ 1 - 1
web/backmanagerconfig-xktj/src/main/java/com/gyee/backconfig/controller/ProBasicMeterPointController.java

@@ -33,7 +33,7 @@ public class ProBasicMeterPointController {
      * 查询
      *
      * @param id
-     * @param code
+     * @param nemCode
      * @param windpowerstationId
      * @param name
      * @param pageNum

+ 1 - 1
web/backmanagerconfig-xktj/src/main/java/com/gyee/backconfig/controller/ProBasicPowerstationPointController.java

@@ -34,7 +34,7 @@ public class ProBasicPowerstationPointController {
      * 查询
      *
      * @param id
-     * @param code
+     * @param nemCode
      * @param name
      * @param model
      * @param uniformCode

+ 38 - 0
web/backmanagerconfig-xktj/src/main/java/com/gyee/backconfig/model/auto/ProBasicPowerstation.java

@@ -1,6 +1,7 @@
 package com.gyee.backconfig.model.auto;
 
 import java.math.BigDecimal;
+import java.time.LocalDate;
 import java.util.ArrayList;
 import java.util.List;
 
@@ -226,6 +227,43 @@ public class ProBasicPowerstation extends Model {
      */
     private String spare4;
 
+    /**
+     * 核准容量
+     */
+    private BigDecimal appCapacity;
+
+    /**
+     * 在建容量
+     */
+    private BigDecimal conCapacity;
+
+    /**
+     * 并网容量
+     */
+    private BigDecimal gridCapacity;
+
+    private BigDecimal hoiCapacity;
+
+    /**
+     * 首批并网时间
+     */
+    private LocalDate firstGridTime;
+
+    /**
+     * 整场投运时间
+     */
+    private LocalDate wholeGridTime;
+
+    /**
+     * 测风塔数量
+     */
+    private Integer anemoNumber;
+
+    /**
+     * 升压站数量
+     */
+    private Integer stationNumber;
+
 
     @TableField(exist = false)
     private List<ProBasicProject> Children = new ArrayList<>();