|
@@ -0,0 +1,53 @@
|
|
|
+package com.ruoyi.ucp.entity;
|
|
|
+
|
|
|
+import com.baomidou.mybatisplus.annotation.IdType;
|
|
|
+import com.baomidou.mybatisplus.annotation.TableId;
|
|
|
+import com.baomidou.mybatisplus.annotation.TableName;
|
|
|
+import lombok.Data;
|
|
|
+
|
|
|
+import java.io.Serializable;
|
|
|
+import java.util.Date;
|
|
|
+
|
|
|
+
|
|
|
+ * <p>
|
|
|
+ *
|
|
|
+ * </p>
|
|
|
+ *
|
|
|
+ * @author gfhd
|
|
|
+ * @since 2024-10-29
|
|
|
+ */
|
|
|
+@Data
|
|
|
+@TableName("predict_examin2")
|
|
|
+public class PredictExamin2 implements Serializable {
|
|
|
+
|
|
|
+ private static final long serialVersionUID = 1L;
|
|
|
+
|
|
|
+ @TableId(type = IdType.AUTO)
|
|
|
+ private Integer id;
|
|
|
+
|
|
|
+ private String modelId;
|
|
|
+
|
|
|
+ private String predictType;
|
|
|
+
|
|
|
+ private String deviceType;
|
|
|
+
|
|
|
+ private Date time;
|
|
|
+
|
|
|
+ private String siteId;
|
|
|
+
|
|
|
+ private String periodId;
|
|
|
+
|
|
|
+ private String lineId;
|
|
|
+
|
|
|
+ private String turbineId;
|
|
|
+
|
|
|
+ private Double examinScore;
|
|
|
+
|
|
|
+ private Double accuracyRate1;
|
|
|
+
|
|
|
+ private Double accuracyRate2;
|
|
|
+
|
|
|
+ private Double accuracyRate3;
|
|
|
+
|
|
|
+ private Double accuracyRate4;
|
|
|
+}
|