java110
2021-11-16 15f6aadbad03b704ae37cf6d5841888486ee85c0
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
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
package com.java110.dto.reportFeeMonthStatistics;
 
import com.java110.dto.PageDto;
import com.java110.dto.fee.FeeConfigDto;
 
import java.io.Serializable;
import java.util.Date;
import java.util.List;
 
/**
 * @ClassName FloorDto
 * @Description 费用月统计数据层封装
 * @Author wuxw
 * @Date 2019/4/24 8:52
 * @Version 1.0
 * add by wuxw 2019/4/24
 **/
public class ReportFeeMonthStatisticsDto extends PageDto implements Serializable {
 
    private String receivableAmount;
    private String statisticsId;
    private String updateTime;
    private String remark;
    private String objName;
    private String receivedAmount;
    private String feeYear;
    private String feeMonth;
    private String feeId;
    private String configId;
    private String objId;
    private String feeName;
    private String oweAmount;
    private String curOweAmount;
    private String communityId;
    private String feeCreateTime;
    private String feeStartTime;
    private String feeEndTime;
    private String objType;
    private String floorId;
    private String floorNum;
    private String unitId;
    private String unitNum;
    private String roomId;
    private String roomNum;
    private String carNum;
    private String contractCode;
    private String payerObjType;
    private String ownerName;
    private String detailId;
    private String builtUpArea;
 
    private String objCount;
    private String normalCount;
 
 
    private Date createTime;
    private String startTime;
    private String endTime;
 
    private String statusCd = "0";
 
    private int oweDay;
    private String deadlineTime;
 
    private String curMaxTime;
    private String importFeeName;
 
    private String oId;
 
    //支付方式
    private String primeRate;
 
    //应收总金额(小计)
    private String totalReceivableAmount;
 
    //实收总金额(小计)
    private String totalReceivedAmount;
 
    //应收总金额(大计)
    private String allReceivableAmount;
 
    //实收总金额(大计)
    private String allReceivedAmount;
 
    //实收总金额(大计)
    private String allOweAmount;
 
    private List<FeeConfigDto> FeeConfigDtos;
 
    //费用类型
    private String feeTypeCd;
 
    //费用类型名称
    private String feeTypeCdName;
 
    //打折金额(包括打折、减免、滞纳金、空置房打折、空置房减免金额等)
    private String discountPrice;
 
    //1:打折 2:减免 3:滞纳金 4:空置房打折 5:空置房减免
    private String discountSmallType;
 
    //优惠金额
    private String preferentialAmount;
 
    //减免金额
    private String deductionAmount;
 
    //滞纳金
    private String lateFee;
 
    //空置房打折金额
    private String vacantHousingDiscount;
 
    //空置房减免金额
    private String vacantHousingReduction;
 
    //收费率
    private String chargeRate;
 
    //状态
    private String state;
 
    //状态名称
    private String stateName;
 
    private String repairId;
 
    private String hisOweAmount;
    private String curReceivableAmount;
    private String curReceivedAmount;
    private String hisOweReceivedAmount;
    private String preReceivedAmount;
 
    public String getReceivableAmount() {
        return receivableAmount;
    }
 
    public void setReceivableAmount(String receivableAmount) {
        this.receivableAmount = receivableAmount;
    }
 
    public String getStatisticsId() {
        return statisticsId;
    }
 
    public void setStatisticsId(String statisticsId) {
        this.statisticsId = statisticsId;
    }
 
    public String getUpdateTime() {
        return updateTime;
    }
 
    public void setUpdateTime(String updateTime) {
        this.updateTime = updateTime;
    }
 
    public String getRemark() {
        return remark;
    }
 
    public void setRemark(String remark) {
        this.remark = remark;
    }
 
    public String getObjName() {
        return objName;
    }
 
    public void setObjName(String objName) {
        this.objName = objName;
    }
 
    public String getReceivedAmount() {
        return receivedAmount;
    }
 
    public void setReceivedAmount(String receivedAmount) {
        this.receivedAmount = receivedAmount;
    }
 
    public String getFeeYear() {
        return feeYear;
    }
 
    public void setFeeYear(String feeYear) {
        this.feeYear = feeYear;
    }
 
    public String getFeeMonth() {
        return feeMonth;
    }
 
    public void setFeeMonth(String feeMonth) {
        this.feeMonth = feeMonth;
    }
 
    public String getFeeId() {
        return feeId;
    }
 
    public void setFeeId(String feeId) {
        this.feeId = feeId;
    }
 
    public String getConfigId() {
        return configId;
    }
 
    public void setConfigId(String configId) {
        this.configId = configId;
    }
 
    public String getObjId() {
        return objId;
    }
 
    public void setObjId(String objId) {
        this.objId = objId;
    }
 
    public String getFeeName() {
        return feeName;
    }
 
    public void setFeeName(String feeName) {
        this.feeName = feeName;
    }
 
    public String getOweAmount() {
        return oweAmount;
    }
 
    public void setOweAmount(String oweAmount) {
        this.oweAmount = oweAmount;
    }
 
    public String getCommunityId() {
        return communityId;
    }
 
    public void setCommunityId(String communityId) {
        this.communityId = communityId;
    }
 
    public String getFeeCreateTime() {
        return feeCreateTime;
    }
 
    public void setFeeCreateTime(String feeCreateTime) {
        this.feeCreateTime = feeCreateTime;
    }
 
    public String getFeeStartTime() {
        return feeStartTime;
    }
 
    public void setFeeStartTime(String feeStartTime) {
        this.feeStartTime = feeStartTime;
    }
 
    public String getFeeEndTime() {
        return feeEndTime;
    }
 
    public void setFeeEndTime(String feeEndTime) {
        this.feeEndTime = feeEndTime;
    }
 
    public String getObjType() {
        return objType;
    }
 
    public void setObjType(String objType) {
        this.objType = objType;
    }
 
    public Date getCreateTime() {
        return createTime;
    }
 
    public void setCreateTime(Date createTime) {
        this.createTime = createTime;
    }
 
    public String getStatusCd() {
        return statusCd;
    }
 
    public void setStatusCd(String statusCd) {
        this.statusCd = statusCd;
    }
 
    public String getFloorId() {
        return floorId;
    }
 
    public void setFloorId(String floorId) {
        this.floorId = floorId;
    }
 
    public String getFloorNum() {
        return floorNum;
    }
 
    public void setFloorNum(String floorNum) {
        this.floorNum = floorNum;
    }
 
    public String getUnitId() {
        return unitId;
    }
 
    public void setUnitId(String unitId) {
        this.unitId = unitId;
    }
 
    public String getUnitNum() {
        return unitNum;
    }
 
    public void setUnitNum(String unitNum) {
        this.unitNum = unitNum;
    }
 
    public String getRoomId() {
        return roomId;
    }
 
    public void setRoomId(String roomId) {
        this.roomId = roomId;
    }
 
    public String getRoomNum() {
        return roomNum;
    }
 
    public void setRoomNum(String roomNum) {
        this.roomNum = roomNum;
    }
 
    public String getStartTime() {
        return startTime;
    }
 
    public void setStartTime(String startTime) {
        this.startTime = startTime;
    }
 
    public String getEndTime() {
        return endTime;
    }
 
    public void setEndTime(String endTime) {
        this.endTime = endTime;
    }
 
    public int getOweDay() {
        return oweDay;
    }
 
    public void setOweDay(int oweDay) {
        this.oweDay = oweDay;
    }
 
    public String getObjCount() {
        return objCount;
    }
 
    public void setObjCount(String objCount) {
        this.objCount = objCount;
    }
 
    public String getCarNum() {
        return carNum;
    }
 
    public void setCarNum(String carNum) {
        this.carNum = carNum;
    }
 
    public String getPayerObjType() {
        return payerObjType;
    }
 
    public void setPayerObjType(String payerObjType) {
        this.payerObjType = payerObjType;
    }
 
    public String getDeadlineTime() {
        return deadlineTime;
    }
 
    public void setDeadlineTime(String deadlineTime) {
        this.deadlineTime = deadlineTime;
    }
 
    public String getImportFeeName() {
        return importFeeName;
    }
 
    public void setImportFeeName(String importFeeName) {
        this.importFeeName = importFeeName;
    }
 
    public String getNormalCount() {
        return normalCount;
    }
 
    public void setNormalCount(String normalCount) {
        this.normalCount = normalCount;
    }
 
    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 List<FeeConfigDto> getFeeConfigDtos() {
        return FeeConfigDtos;
    }
 
    public void setFeeConfigDtos(List<FeeConfigDto> feeConfigDtoS) {
        FeeConfigDtos = feeConfigDtoS;
    }
 
    public String getPrimeRate() {
        return primeRate;
    }
 
    public void setPrimeRate(String primeRate) {
        this.primeRate = primeRate;
    }
 
    public String getFeeTypeCd() {
        return feeTypeCd;
    }
 
    public void setFeeTypeCd(String feeTypeCd) {
        this.feeTypeCd = feeTypeCd;
    }
 
    public String getPreferentialAmount() {
        return preferentialAmount;
    }
 
    public void setPreferentialAmount(String preferentialAmount) {
        this.preferentialAmount = preferentialAmount;
    }
 
    public String getDeductionAmount() {
        return deductionAmount;
    }
 
    public void setDeductionAmount(String deductionAmount) {
        this.deductionAmount = deductionAmount;
    }
 
    public String getLateFee() {
        return lateFee;
    }
 
    public void setLateFee(String lateFee) {
        this.lateFee = lateFee;
    }
 
    public String getDiscountSmallType() {
        return discountSmallType;
    }
 
    public void setDiscountSmallType(String discountSmallType) {
        this.discountSmallType = discountSmallType;
    }
 
    public String getDiscountPrice() {
        return discountPrice;
    }
 
    public void setDiscountPrice(String discountPrice) {
        this.discountPrice = discountPrice;
    }
 
    public String getVacantHousingDiscount() {
        return vacantHousingDiscount;
    }
 
    public void setVacantHousingDiscount(String vacantHousingDiscount) {
        this.vacantHousingDiscount = vacantHousingDiscount;
    }
 
    public String getVacantHousingReduction() {
        return vacantHousingReduction;
    }
 
    public void setVacantHousingReduction(String vacantHousingReduction) {
        this.vacantHousingReduction = vacantHousingReduction;
    }
 
    public String getContractCode() {
        return contractCode;
    }
 
    public void setContractCode(String contractCode) {
        this.contractCode = contractCode;
    }
 
    public String getOwnerName() {
        return ownerName;
    }
 
    public void setOwnerName(String ownerName) {
        this.ownerName = ownerName;
    }
 
    public String getoId() {
        return oId;
    }
 
    public void setoId(String oId) {
        this.oId = oId;
    }
 
    public String getCurMaxTime() {
        return curMaxTime;
    }
 
    public void setCurMaxTime(String curMaxTime) {
        this.curMaxTime = curMaxTime;
    }
 
    public String getChargeRate() {
        return chargeRate;
    }
 
    public void setChargeRate(String chargeRate) {
        this.chargeRate = chargeRate;
    }
 
    public String getFeeTypeCdName() {
        return feeTypeCdName;
    }
 
    public void setFeeTypeCdName(String feeTypeCdName) {
        this.feeTypeCdName = feeTypeCdName;
    }
 
    public String getState() {
        return state;
    }
 
    public void setState(String state) {
        this.state = state;
    }
 
    public String getStateName() {
        return stateName;
    }
 
    public void setStateName(String stateName) {
        this.stateName = stateName;
    }
 
    public String getRepairId() {
        return repairId;
    }
 
    public void setRepairId(String repairId) {
        this.repairId = repairId;
    }
    public String getAllOweAmount() {
        return allOweAmount;
    }
 
    public void setAllOweAmount(String allOweAmount) {
        this.allOweAmount = allOweAmount;
    }
 
    public String getCurOweAmount() {
        return curOweAmount;
    }
 
    public void setCurOweAmount(String curOweAmount) {
        this.curOweAmount = curOweAmount;
    }
 
    public String getDetailId() {
        return detailId;
    }
 
    public void setDetailId(String detailId) {
        this.detailId = detailId;
    }
 
    public String getBuiltUpArea() {
        return builtUpArea;
    }
 
    public void setBuiltUpArea(String builtUpArea) {
        this.builtUpArea = builtUpArea;
    }
 
    public String getHisOweAmount() {
        return hisOweAmount;
    }
 
    public void setHisOweAmount(String hisOweAmount) {
        this.hisOweAmount = hisOweAmount;
    }
 
    public String getCurReceivableAmount() {
        return curReceivableAmount;
    }
 
    public void setCurReceivableAmount(String curReceivableAmount) {
        this.curReceivableAmount = curReceivableAmount;
    }
 
    public String getCurReceivedAmount() {
        return curReceivedAmount;
    }
 
    public void setCurReceivedAmount(String curReceivedAmount) {
        this.curReceivedAmount = curReceivedAmount;
    }
 
    public String getHisOweReceivedAmount() {
        return hisOweReceivedAmount;
    }
 
    public void setHisOweReceivedAmount(String hisOweReceivedAmount) {
        this.hisOweReceivedAmount = hisOweReceivedAmount;
    }
 
    public String getPreReceivedAmount() {
        return preReceivedAmount;
    }
 
    public void setPreReceivedAmount(String preReceivedAmount) {
        this.preReceivedAmount = preReceivedAmount;
    }
}