|
@@ -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<>();
|