|
@@ -0,0 +1,70 @@
|
|
|
+package com.gyee.power.fitting.model;
|
|
|
+
|
|
|
+import com.baomidou.mybatisplus.annotation.TableName;
|
|
|
+import com.baomidou.mybatisplus.extension.activerecord.Model;
|
|
|
+import java.io.Serializable;
|
|
|
+import lombok.Data;
|
|
|
+import lombok.EqualsAndHashCode;
|
|
|
+
|
|
|
+/**
|
|
|
+ * <p>
|
|
|
+ *
|
|
|
+ * </p>
|
|
|
+ *
|
|
|
+ * @author chenmh
|
|
|
+ * @since 2023-09-24
|
|
|
+ */
|
|
|
+@Data
|
|
|
+@EqualsAndHashCode(callSuper = false)
|
|
|
+@TableName("pro_econ_power_fitting_analy_sis")
|
|
|
+public class ProEconPowerFittingAnalySis extends Model<ProEconPowerFittingAnalySis> {
|
|
|
+
|
|
|
+ private static final long serialVersionUID=1L;
|
|
|
+
|
|
|
+ private String id;
|
|
|
+
|
|
|
+ private String station;
|
|
|
+
|
|
|
+ private String windturbineId;
|
|
|
+
|
|
|
+ private String time;
|
|
|
+
|
|
|
+ private String path;
|
|
|
+
|
|
|
+ private String type;
|
|
|
+
|
|
|
+ private String interval;
|
|
|
+
|
|
|
+ private String processid;
|
|
|
+
|
|
|
+ private String stationcn;
|
|
|
+
|
|
|
+ private String code;
|
|
|
+
|
|
|
+ private String cpavg;
|
|
|
+
|
|
|
+ private String speedavg;
|
|
|
+
|
|
|
+ private String frequency;
|
|
|
+
|
|
|
+ private String pcratio;
|
|
|
+
|
|
|
+ private String pc5ratio;
|
|
|
+
|
|
|
+ private String pc10ratio;
|
|
|
+
|
|
|
+ private String pc12ratio;
|
|
|
+
|
|
|
+ private String pc25ratio;
|
|
|
+
|
|
|
+ private String interp;
|
|
|
+
|
|
|
+ private String iscal;
|
|
|
+
|
|
|
+
|
|
|
+ @Override
|
|
|
+ protected Serializable pkVal() {
|
|
|
+ return this.id;
|
|
|
+ }
|
|
|
+
|
|
|
+}
|