package com.java110.dto.ReportFeeMonthStatisticsPrepaymentDto; import com.java110.dto.PageDto; import java.io.Serializable; public class ReportFeeMonthStatisticsPrepaymentTotalDto extends PageDto implements Serializable { //应收总金额(小计) private String totalReceivableAmount; //实收总金额(小计) private String totalReceivedAmount; //应收总金额(大计) private String allReceivableAmount; //实收总金额(大计) private String allReceivedAmount; //欠费金额(大计) private String allOweAmount; //欠费金额(小计) private String totalOweAmount; //优惠金额(小计) private String totalPreferentialAmount; //减免金额(小计) private String totalDeductionAmount; //滞纳金(小计) private String totalLateFee; //空置房打折金额(小计) private String totalVacantHousingDiscount; //空置房减免金额(小计) private String totalVacantHousingReduction; //赠送规则金额(小计) private String totalGiftAmount; //应缴金额(小计) private String totalPayableAmount; //优惠金额(大计) private String allPreferentialAmount; //减免金额(大计) private String allDeductionAmount; //滞纳金(大计) private String allLateFee; //空置房打折金额(大计) private String allVacantHousingDiscount; //空置房减免金额(大计) private String allVacantHousingReduction; //空置房减免金额(大计) private String allGiftAmount; //应缴金额(大计) private String allPayableAmount; public String getTotalReceivableAmount() { return totalReceivableAmount; } public void setTotalReceivableAmount(String totalReceivableAmount) { this.totalReceivableAmount = totalReceivableAmount; } public String getTotalReceivedAmount() { return totalReceivedAmount; } public void setTotalReceivedAmount(String totalReceivedAmount) { this.totalReceivedAmount = totalReceivedAmount; } public String getAllReceivableAmount() { return allReceivableAmount; } public void setAllReceivableAmount(String allReceivableAmount) { this.allReceivableAmount = allReceivableAmount; } public String getAllReceivedAmount() { return allReceivedAmount; } public void setAllReceivedAmount(String allReceivedAmount) { this.allReceivedAmount = allReceivedAmount; } public String getTotalPreferentialAmount() { return totalPreferentialAmount; } public void setTotalPreferentialAmount(String totalPreferentialAmount) { this.totalPreferentialAmount = totalPreferentialAmount; } public String getTotalDeductionAmount() { return totalDeductionAmount; } public void setTotalDeductionAmount(String totalDeductionAmount) { this.totalDeductionAmount = totalDeductionAmount; } public String getTotalLateFee() { return totalLateFee; } public void setTotalLateFee(String totalLateFee) { this.totalLateFee = totalLateFee; } public String getTotalVacantHousingDiscount() { return totalVacantHousingDiscount; } public void setTotalVacantHousingDiscount(String totalVacantHousingDiscount) { this.totalVacantHousingDiscount = totalVacantHousingDiscount; } public String getTotalVacantHousingReduction() { return totalVacantHousingReduction; } public void setTotalVacantHousingReduction(String totalVacantHousingReduction) { this.totalVacantHousingReduction = totalVacantHousingReduction; } public String getTotalGiftAmount() { return totalGiftAmount; } public void setTotalGiftAmount(String totalGiftAmount) { this.totalGiftAmount = totalGiftAmount; } public String getAllPreferentialAmount() { return allPreferentialAmount; } public void setAllPreferentialAmount(String allPreferentialAmount) { this.allPreferentialAmount = allPreferentialAmount; } public String getAllDeductionAmount() { return allDeductionAmount; } public void setAllDeductionAmount(String allDeductionAmount) { this.allDeductionAmount = allDeductionAmount; } public String getAllLateFee() { return allLateFee; } public void setAllLateFee(String allLateFee) { this.allLateFee = allLateFee; } public String getAllVacantHousingDiscount() { return allVacantHousingDiscount; } public void setAllVacantHousingDiscount(String allVacantHousingDiscount) { this.allVacantHousingDiscount = allVacantHousingDiscount; } public String getAllVacantHousingReduction() { return allVacantHousingReduction; } public void setAllVacantHousingReduction(String allVacantHousingReduction) { this.allVacantHousingReduction = allVacantHousingReduction; } public String getAllGiftAmount() { return allGiftAmount; } public void setAllGiftAmount(String allGiftAmount) { this.allGiftAmount = allGiftAmount; } public String getAllOweAmount() { return allOweAmount; } public void setAllOweAmount(String allOweAmount) { this.allOweAmount = allOweAmount; } public String getTotalOweAmount() { return totalOweAmount; } public void setTotalOweAmount(String totalOweAmount) { this.totalOweAmount = totalOweAmount; } public String getTotalPayableAmount() { return totalPayableAmount; } public void setTotalPayableAmount(String totalPayableAmount) { this.totalPayableAmount = totalPayableAmount; } public String getAllPayableAmount() { return allPayableAmount; } public void setAllPayableAmount(String allPayableAmount) { this.allPayableAmount = allPayableAmount; } }