|
@@ -0,0 +1,79 @@
|
|
|
+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.time.LocalDateTime;
|
|
|
+import java.io.Serializable;
|
|
|
+import lombok.Data;
|
|
|
+import lombok.EqualsAndHashCode;
|
|
|
+import lombok.experimental.Accessors;
|
|
|
+
|
|
|
+/**
|
|
|
+ * <p>
|
|
|
+ *
|
|
|
+ * </p>
|
|
|
+ *
|
|
|
+ * @author author
|
|
|
+ * @since 2023-06-15
|
|
|
+ */
|
|
|
+@Data
|
|
|
+@EqualsAndHashCode(callSuper = false)
|
|
|
+@Accessors(chain = true)
|
|
|
+@TableName("bill_subsidy_modify")
|
|
|
+public class BillSubsidyModify implements Serializable {
|
|
|
+
|
|
|
+ private static final long serialVersionUID = 1L;
|
|
|
+
|
|
|
+ @TableId(value = "id", type = IdType.AUTO)
|
|
|
+ private Integer id;
|
|
|
+
|
|
|
+ /**
|
|
|
+ * 引进奖补数量
|
|
|
+ */
|
|
|
+ private Integer beforeRewardNum;
|
|
|
+
|
|
|
+ /**
|
|
|
+ * 耳标号
|
|
|
+ */
|
|
|
+ private String beforeEartagNo;
|
|
|
+
|
|
|
+ /**
|
|
|
+ * 申报金额
|
|
|
+ */
|
|
|
+ private String beforeApplyMoney;
|
|
|
+
|
|
|
+ /**
|
|
|
+ * 修改后引进奖补数量
|
|
|
+ */
|
|
|
+ private Integer afterRewardNum;
|
|
|
+
|
|
|
+ /**
|
|
|
+ * 修改后耳标号
|
|
|
+ */
|
|
|
+ private String afterEartagNo;
|
|
|
+
|
|
|
+ /**
|
|
|
+ * 修改后申报金额
|
|
|
+ */
|
|
|
+ private Integer afterApplyMoney;
|
|
|
+
|
|
|
+ private Integer updateUserId;
|
|
|
+
|
|
|
+ /**
|
|
|
+ * 修改人姓名
|
|
|
+ */
|
|
|
+ private String updateUserName;
|
|
|
+
|
|
|
+ /**
|
|
|
+ * 补贴单id
|
|
|
+ */
|
|
|
+ private String subsidyId;
|
|
|
+
|
|
|
+ /**
|
|
|
+ * 修改时间
|
|
|
+ */
|
|
|
+ private LocalDateTime updateTime;
|
|
|
+
|
|
|
+
|
|
|
+}
|