|
@@ -0,0 +1,37 @@
|
|
|
+package com.huimv.produce.produce.entity;
|
|
|
+
|
|
|
+import com.baomidou.mybatisplus.annotation.IdType;
|
|
|
+import com.baomidou.mybatisplus.annotation.TableId;
|
|
|
+import lombok.Data;
|
|
|
+import lombok.EqualsAndHashCode;
|
|
|
+
|
|
|
+import java.io.Serializable;
|
|
|
+
|
|
|
+/**
|
|
|
+ * <p>
|
|
|
+ *
|
|
|
+ * </p>
|
|
|
+ *
|
|
|
+ * @author zn
|
|
|
+ * @since 2022-10-11
|
|
|
+ */
|
|
|
+@Data
|
|
|
+@EqualsAndHashCode(callSuper = false)
|
|
|
+public class Kesou implements Serializable {
|
|
|
+
|
|
|
+ private static final long serialVersionUID=1L;
|
|
|
+
|
|
|
+ @TableId(value = "id", type = IdType.AUTO)
|
|
|
+ private Integer id;
|
|
|
+
|
|
|
+ private Integer vlueKs1;
|
|
|
+ private Integer vlueKs2;
|
|
|
+ private Integer vlueKs3;
|
|
|
+ private Integer vlueKs4;
|
|
|
+ private Integer vlueKs5;
|
|
|
+ private Integer vlueKs6;
|
|
|
+ private Integer vlueKs7;
|
|
|
+ private String farmId;
|
|
|
+
|
|
|
+
|
|
|
+}
|