|
@@ -0,0 +1,51 @@
|
|
|
+package com.huimv.farm.damsubsidy.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-05-19
|
|
|
+ */
|
|
|
+@Data
|
|
|
+@EqualsAndHashCode(callSuper = false)
|
|
|
+@Accessors(chain = true)
|
|
|
+@TableName("base_farmer_type_info")
|
|
|
+public class BaseFarmerTypeInfo implements Serializable {
|
|
|
+
|
|
|
+ private static final long serialVersionUID = 1L;
|
|
|
+
|
|
|
+ @TableId(value = "id", type = IdType.AUTO)
|
|
|
+ private Integer id;
|
|
|
+
|
|
|
+ /**
|
|
|
+ * 类型名称
|
|
|
+ */
|
|
|
+ private String farmerName;
|
|
|
+
|
|
|
+ /**
|
|
|
+ * 0动态监测对象,1已脱贫,2其他养殖场(户)
|
|
|
+ */
|
|
|
+ private Integer farmerType;
|
|
|
+
|
|
|
+ /**
|
|
|
+ * 奖补金额
|
|
|
+ */
|
|
|
+ private String rewardMoney;
|
|
|
+
|
|
|
+ /**
|
|
|
+ * 0肉牛,1羊,2猪
|
|
|
+ */
|
|
|
+ private Integer animalType;
|
|
|
+
|
|
|
+
|
|
|
+}
|