java110-bean/src/main/java/com/java110/dto/reportFeeMonthStatistics/ReportFeeMonthStatisticsTotalDto.java
old mode 100644 new mode 100755
@@ -42,6 +42,9 @@
    //空置房减免金额(小计)
    private String totalVacantHousingReduction;
    //赠送规则金额(小计)
    private String totalGiftAmount;
    //优惠金额(大计)
    private String allPreferentialAmount;
@@ -56,6 +59,9 @@
    //空置房减免金额(大计)
    private String allVacantHousingReduction;
    //空置房减免金额(大计)
    private String allGiftAmount;
    public String getTotalReceivableAmount() {
        return totalReceivableAmount;
@@ -168,4 +174,20 @@
    public void setAllVacantHousingReduction(String allVacantHousingReduction) {
        this.allVacantHousingReduction = allVacantHousingReduction;
    }
    public String getTotalGiftAmount() {
        return totalGiftAmount;
    }
    public void setTotalGiftAmount(String totalGiftAmount) {
        this.totalGiftAmount = totalGiftAmount;
    }
    public String getAllGiftAmount() {
        return allGiftAmount;
    }
    public void setAllGiftAmount(String allGiftAmount) {
        this.allGiftAmount = allGiftAmount;
    }
}