|
@@ -0,0 +1,55 @@
|
|
|
+package com.huimv.env.manage.entity;
|
|
|
+
|
|
|
+import com.baomidou.mybatisplus.annotation.TableName;
|
|
|
+import com.baomidou.mybatisplus.annotation.IdType;
|
|
|
+import com.baomidou.mybatisplus.annotation.TableId;
|
|
|
+import java.io.Serializable;
|
|
|
+import lombok.Data;
|
|
|
+import lombok.EqualsAndHashCode;
|
|
|
+import lombok.experimental.Accessors;
|
|
|
+
|
|
|
+/**
|
|
|
+ * <p>
|
|
|
+ *
|
|
|
+ * </p>
|
|
|
+ *
|
|
|
+ * @author author
|
|
|
+ * @since 2023-03-14
|
|
|
+ */
|
|
|
+@Data
|
|
|
+@EqualsAndHashCode(callSuper = false)
|
|
|
+@Accessors(chain = true)
|
|
|
+@TableName("base_farm")
|
|
|
+public class BaseFarm implements Serializable {
|
|
|
+
|
|
|
+ private static final long serialVersionUID = 1L;
|
|
|
+
|
|
|
+ @TableId(value = "id", type = IdType.AUTO)
|
|
|
+ private Integer id;
|
|
|
+
|
|
|
+ private String farmCode;
|
|
|
+
|
|
|
+ private String farmName;
|
|
|
+
|
|
|
+ private String location;
|
|
|
+
|
|
|
+ private String leader;
|
|
|
+
|
|
|
+ private String phone;
|
|
|
+
|
|
|
+ private String remark;
|
|
|
+
|
|
|
+ private String areaCode;
|
|
|
+
|
|
|
+ private String code1;
|
|
|
+
|
|
|
+ private String code2;
|
|
|
+
|
|
|
+ private String ip;
|
|
|
+
|
|
|
+ private String port;
|
|
|
+
|
|
|
+ private Integer farmId;
|
|
|
+
|
|
|
+
|
|
|
+}
|