|
@@ -0,0 +1,62 @@
|
|
|
|
+package com.gyee.generation.model.auto;
|
|
|
|
+
|
|
|
|
+import java.math.BigDecimal;
|
|
|
|
+import com.baomidou.mybatisplus.extension.activerecord.Model;
|
|
|
|
+import java.time.LocalDate;
|
|
|
|
+import lombok.Data;
|
|
|
|
+import lombok.EqualsAndHashCode;
|
|
|
|
+
|
|
|
|
+/**
|
|
|
|
+ * <p>
|
|
|
|
+ *
|
|
|
|
+ * </p>
|
|
|
|
+ *
|
|
|
|
+ * @author 谢生杰
|
|
|
|
+ * @since 2022-07-29
|
|
|
|
+ */
|
|
|
|
+@Data
|
|
|
|
+@EqualsAndHashCode(callSuper = true)
|
|
|
|
+public class Shutdownevent extends Model {
|
|
|
|
+
|
|
|
|
+ private static final long serialVersionUID = 1L;
|
|
|
|
+
|
|
|
|
+ private String id;
|
|
|
|
+
|
|
|
|
+ private String windpowerstationid;
|
|
|
|
+
|
|
|
|
+ private String windturbineid;
|
|
|
|
+
|
|
|
|
+ private LocalDate stoptime;
|
|
|
|
+
|
|
|
|
+ private LocalDate starttime;
|
|
|
|
+
|
|
|
|
+ private BigDecimal stophours;
|
|
|
|
+
|
|
|
|
+ private BigDecimal losspower;
|
|
|
|
+
|
|
|
|
+ private String stoptypeid;
|
|
|
|
+
|
|
|
|
+ private Integer ishandle;
|
|
|
|
+
|
|
|
|
+ private String warningid;
|
|
|
|
+
|
|
|
|
+ private String projectid;
|
|
|
|
+
|
|
|
|
+ private String handleway;
|
|
|
|
+
|
|
|
|
+ private String faultview;
|
|
|
|
+
|
|
|
|
+ private Integer statuscode;
|
|
|
|
+
|
|
|
|
+ private String mainid;
|
|
|
|
+
|
|
|
|
+ private String resetrate;
|
|
|
|
+
|
|
|
|
+ private String staterate;
|
|
|
|
+
|
|
|
|
+ private String failrate;
|
|
|
|
+
|
|
|
|
+ private Integer warningrecordsid;
|
|
|
|
+
|
|
|
|
+
|
|
|
|
+}
|