|
@@ -0,0 +1,28 @@
|
|
|
+package com.huimv.farm.damsubsidy.entity.vo;
|
|
|
+
|
|
|
+import lombok.Data;
|
|
|
+
|
|
|
+import java.math.BigDecimal;
|
|
|
+
|
|
|
+@Data
|
|
|
+public class BillSubsidyTotalVo {
|
|
|
+ private String townName;
|
|
|
+ private Integer subsidyFarmerNum;
|
|
|
+ private Integer subsidyCattleNum;
|
|
|
+ private BigDecimal subsidyTotalMoney;
|
|
|
+ private Integer getRidOfPovertyNum;
|
|
|
+ private Integer getRidOfPovertyCattleNum;
|
|
|
+ private BigDecimal getRidOfPovertyMoney;
|
|
|
+ private Integer monitorNum;
|
|
|
+ private Integer monitorCattleNum;
|
|
|
+ private BigDecimal monitorMoney;
|
|
|
+ private Integer otherNum;
|
|
|
+ private Integer otherCattleNum;
|
|
|
+ private BigDecimal otherMoney;
|
|
|
+ private Integer bigNum;
|
|
|
+ private Integer bigCattleNum;
|
|
|
+ private BigDecimal bigMoney;
|
|
|
+ private Integer enterpriseNum;
|
|
|
+ private Integer enterpriseCattleNum;
|
|
|
+ private BigDecimal enterpriseMoney;
|
|
|
+}
|