1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
package com.java110.dto.reportFeeMonthStatistics;
 
import com.java110.dto.PageDto;
import com.java110.dto.fee.FeeConfigDto;
 
import java.io.Serializable;
import java.util.List;
 
/**
 * @ClassName ReportFeeMonthStatisticsTotalDto
 * @Description 缴费明细报表大计、小计金额数据层封装
 * @Author fqz
 * @Date 2021/1/4 11:14
 * @Version 1.0
 * add by fqz 2021/1/4
 **/
public class ReportFeeMonthStatisticsTotalDto extends PageDto implements Serializable {
    //应收总金额(小计)
    private String totalReceivableAmount;
 
    //实收总金额(小计)
    private String totalReceivedAmount;
 
    //应收总金额(大计)
    private String allReceivableAmount;
 
    //实收总金额(大计)
    private String allReceivedAmount;
 
    //优惠金额(小计)
    private String totalPreferentialAmount;
 
    //减免金额(小计)
    private String totalDeductionAmount;
 
    //滞纳金(小计)
    private String totalLateFee;
 
    //空置房打折金额(小计)
    private String totalVacantHousingDiscount;
 
    //空置房减免金额(小计)
    private String totalVacantHousingReduction;
 
    //赠送规则金额(小计)
    private String totalGiftAmount;
 
    //优惠金额(大计)
    private String allPreferentialAmount;
 
    //减免金额(大计)
    private String allDeductionAmount;
 
    //滞纳金(大计)
    private String allLateFee;
 
    //空置房打折金额(大计)
    private String allVacantHousingDiscount;
 
    //空置房减免金额(大计)
    private String allVacantHousingReduction;
 
    //空置房减免金额(大计)
    private String allGiftAmount;
 
    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 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 getTotalGiftAmount() {
        return totalGiftAmount;
    }
 
    public void setTotalGiftAmount(String totalGiftAmount) {
        this.totalGiftAmount = totalGiftAmount;
    }
 
    public String getAllGiftAmount() {
        return allGiftAmount;
    }
 
    public void setAllGiftAmount(String allGiftAmount) {
        this.allGiftAmount = allGiftAmount;
    }
}