|
@@ -0,0 +1,67 @@
|
|
|
+package com.huimv.eartag2.manage2.pojo;
|
|
|
+
|
|
|
+import com.baomidou.mybatisplus.annotation.TableName;
|
|
|
+import com.baomidou.mybatisplus.annotation.IdType;
|
|
|
+import java.time.LocalDate;
|
|
|
+import com.baomidou.mybatisplus.annotation.TableId;
|
|
|
+import java.time.LocalDateTime;
|
|
|
+import java.io.Serializable;
|
|
|
+import lombok.Data;
|
|
|
+import lombok.EqualsAndHashCode;
|
|
|
+import lombok.experimental.Accessors;
|
|
|
+
|
|
|
+/**
|
|
|
+ * <p>
|
|
|
+ *
|
|
|
+ * </p>
|
|
|
+ *
|
|
|
+ * @author author
|
|
|
+ * @since 2022-07-29
|
|
|
+ */
|
|
|
+@Data
|
|
|
+@EqualsAndHashCode(callSuper = false)
|
|
|
+@Accessors(chain = true)
|
|
|
+@TableName("eartag_data2")
|
|
|
+public class EartagData2 implements Serializable {
|
|
|
+
|
|
|
+ private static final long serialVersionUID = 1L;
|
|
|
+
|
|
|
+ @TableId(value = "id", type = IdType.AUTO)
|
|
|
+ private Integer id;
|
|
|
+
|
|
|
+ private String cmdHeader;
|
|
|
+
|
|
|
+ private String device;
|
|
|
+
|
|
|
+ private String earmark;
|
|
|
+
|
|
|
+ private Integer bat;
|
|
|
+
|
|
|
+ private Integer earTemp;
|
|
|
+
|
|
|
+ private Float earTemp1;
|
|
|
+
|
|
|
+ private Integer envTemp;
|
|
|
+
|
|
|
+ private Float envTemp1;
|
|
|
+
|
|
|
+ private Integer act;
|
|
|
+
|
|
|
+ private Integer act1;
|
|
|
+
|
|
|
+ private Integer signal1;
|
|
|
+
|
|
|
+ private LocalDateTime askTime;
|
|
|
+
|
|
|
+ private String other;
|
|
|
+
|
|
|
+ private LocalDateTime addTime;
|
|
|
+
|
|
|
+ private LocalDate createDate;
|
|
|
+
|
|
|
+ private String farmId;
|
|
|
+
|
|
|
+ private LocalDate askDate;
|
|
|
+
|
|
|
+
|
|
|
+}
|