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
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
package com.java110.dto.ReportFeeMonthStatisticsPrepaymentDto;
 
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 ReportFeeMonthStatisticsPrepaymentDto extends PageDto implements Serializable {
    private String receivableAmount;
    private String prepaymentId;
    private String updateTime;
    private String remark;
    private String objName;
    private String objNameNum;
    private String receivedAmount;
    private String payableAmount;
    private String feeId;
    private String configId;
    private String objId;
    private String feeName;
    private String oweAmount;
    private String curOweAmount;
    private String communityId;
    private String feeStartTime;
    private String feeEndTime;
    private String objType;
    private String floorId;
    private String floorNum;
    private String unitId;
    private String[] unitIds;
    private String unitNum;
    private String roomId;
    private String roomNum;
    private String carNum;
    private String ownerName;
    private String ownerId;
    private String detailId;
    private String builtUpArea;
 
    private String objCount;
    private String normalCount;
 
    private Date createTime;
    private String startTime;
    private String endTime;
    private String startBeginTime;
    private String startFinishTime;
    private String endBeginTime;
    private String endFinishTime;
 
    private String statusCd = "0";
 
    private int oweDay;
    private String deadlineTime;
 
    private String curMaxTime;
    private String importFeeName;
 
    private String oId;
 
    //支付方式
    private String primeRate;
 
    private double configReceivedAmount = 0;
 
    //应收总金额(小计)
    private String totalReceivableAmount;
 
    //实收总金额(小计)
    private String totalReceivedAmount;
 
    //应缴金额(小计)
    private String totalPayableAmount;
 
    //欠费金额(小计)
    private String totalOweAmount;
 
    //优惠金额(小计)
    private String totalPreferentialAmount;
 
    //减免金额(小计)
    private String totalDeductionAmount;
 
    //滞纳金(小计)
    private String totalLateFee;
 
    //空置房打折(小计)
    private String totalVacantHousingDiscount;
 
    //空置房减免(小计)
    private String totalVacantHousingReduction;
 
    //赠送规则金额(小计)
    private String totalGiftAmount;
 
    //应收总金额(大计)
    private String allReceivableAmount;
 
    //实收总金额(大计)
    private String allReceivedAmount;
 
    //实收总金额(大计)
    private String allOweAmount;
 
    //应缴金额(大计)
    private String allPayableAmount;
 
    //优惠金额(小计)
    private String allPreferentialAmount;
 
    //减免金额(小计)
    private String allDeductionAmount;
 
    //滞纳金(小计)
    private String allLateFee;
 
    //空置房打折(小计)
    private String allVacantHousingDiscount;
 
    //空置房减免(小计)
    private String allVacantHousingReduction;
 
    //赠送规则金额(小计)
    private String allGiftAmount;
 
    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 giftAmount;
 
    //收费率
    private String chargeRate;
 
    //状态
    private String state;
 
    //状态名称
    private String stateName;
 
    private String repairId;
 
    private double hisOweAmount;
    private double curReceivableAmount;
    private double curReceivedAmount;
    private double hisOweReceivedAmount;
    private double preReceivedAmount;
    private double allHisOweReceivedAmount;
 
    private String[] configIds;
 
    private String yearMonth;
 
    private String payTime;
    private String prepaymentState;
    private String prepaymentStateName;
    private String billState;
    private String billStateName;
    private String prepaymentReceivableAmount;
    private String prepaymentReceivedAmount;
 
    private String feeBeginTime;
    private String feeFinishTime;
    private String prepaymentCycle;
    private String payFeeFlag;
    private String prepaymentDetailId;
 
    private String nextStartTime;
 
    private String newBeginTime;
    private String newFinishTime;
 
    public String getReceivableAmount() {
        return receivableAmount;
    }
 
    public void setReceivableAmount(String receivableAmount) {
        this.receivableAmount = receivableAmount;
    }
 
    public String getPrepaymentId() {
        return prepaymentId;
    }
 
    public void setPrepaymentId(String prepaymentId) {
        this.prepaymentId = prepaymentId;
    }
 
    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 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 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 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 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[] getConfigIds() {
        return configIds;
    }
 
    public void setConfigIds(String[] configIds) {
        this.configIds = configIds;
    }
 
    public double getConfigReceivedAmount() {
        return configReceivedAmount;
    }
 
    public void setConfigReceivedAmount(double configReceivedAmount) {
        this.configReceivedAmount = configReceivedAmount;
    }
 
    public double getHisOweAmount() {
        return hisOweAmount;
    }
 
    public void setHisOweAmount(double hisOweAmount) {
        this.hisOweAmount = hisOweAmount;
    }
 
    public double getCurReceivableAmount() {
        return curReceivableAmount;
    }
 
    public void setCurReceivableAmount(double curReceivableAmount) {
        this.curReceivableAmount = curReceivableAmount;
    }
 
    public double getCurReceivedAmount() {
        return curReceivedAmount;
    }
 
    public void setCurReceivedAmount(double curReceivedAmount) {
        this.curReceivedAmount = curReceivedAmount;
    }
 
    public double getHisOweReceivedAmount() {
        return hisOweReceivedAmount;
    }
 
    public void setHisOweReceivedAmount(double hisOweReceivedAmount) {
        this.hisOweReceivedAmount = hisOweReceivedAmount;
    }
 
    public double getPreReceivedAmount() {
        return preReceivedAmount;
    }
 
    public void setPreReceivedAmount(double preReceivedAmount) {
        this.preReceivedAmount = preReceivedAmount;
    }
 
    public String getYearMonth() {
        return yearMonth;
    }
 
    public void setYearMonth(String yearMonth) {
        this.yearMonth = yearMonth;
    }
 
    public double getAllHisOweReceivedAmount() {
        return allHisOweReceivedAmount;
    }
 
    public void setAllHisOweReceivedAmount(double allHisOweReceivedAmount) {
        this.allHisOweReceivedAmount = allHisOweReceivedAmount;
    }
 
    public String getOwnerId() {
        return ownerId;
    }
 
    public void setOwnerId(String ownerId) {
        this.ownerId = ownerId;
    }
 
    public String getObjNameNum() {
        return objNameNum;
    }
 
    public void setObjNameNum(String objNameNum) {
        this.objNameNum = objNameNum;
    }
 
    public String getGiftAmount() {
        return giftAmount;
    }
 
    public void setGiftAmount(String giftAmount) {
        this.giftAmount = giftAmount;
    }
 
    public String getPayableAmount() {
        return payableAmount;
    }
 
    public void setPayableAmount(String payableAmount) {
        this.payableAmount = payableAmount;
    }
 
    public String[] getUnitIds() {
        return unitIds;
    }
 
    public void setUnitIds(String[] unitIds) {
        this.unitIds = unitIds;
    }
 
    public String getPayTime() {
        return payTime;
    }
 
    public void setPayTime(String payTime) {
        this.payTime = payTime;
    }
 
    public String getPrepaymentState() {
        return prepaymentState;
    }
 
    public void setPrepaymentState(String prepaymentState) {
        this.prepaymentState = prepaymentState;
    }
 
    public String getFeeBeginTime() {
        return feeBeginTime;
    }
 
    public void setFeeBeginTime(String feeBeginTime) {
        this.feeBeginTime = feeBeginTime;
    }
 
    public String getFeeFinishTime() {
        return feeFinishTime;
    }
 
    public void setFeeFinishTime(String feeFinishTime) {
        this.feeFinishTime = feeFinishTime;
    }
 
    public String getPrepaymentCycle() {
        return prepaymentCycle;
    }
 
    public void setPrepaymentCycle(String prepaymentCycle) {
        this.prepaymentCycle = prepaymentCycle;
    }
 
    public String getPayFeeFlag() {
        return payFeeFlag;
    }
 
    public void setPayFeeFlag(String payFeeFlag) {
        this.payFeeFlag = payFeeFlag;
    }
 
    public String getPrepaymentDetailId() {
        return prepaymentDetailId;
    }
 
    public void setPrepaymentDetailId(String prepaymentDetailId) {
        this.prepaymentDetailId = prepaymentDetailId;
    }
 
    public String getPrepaymentStateName() {
        return prepaymentStateName;
    }
 
    public void setPrepaymentStateName(String prepaymentStateName) {
        this.prepaymentStateName = prepaymentStateName;
    }
 
    public String getPrepaymentReceivableAmount() {
        return prepaymentReceivableAmount;
    }
 
    public void setPrepaymentReceivableAmount(String prepaymentReceivableAmount) {
        this.prepaymentReceivableAmount = prepaymentReceivableAmount;
    }
 
    public String getPrepaymentReceivedAmount() {
        return prepaymentReceivedAmount;
    }
 
    public void setPrepaymentReceivedAmount(String prepaymentReceivedAmount) {
        this.prepaymentReceivedAmount = prepaymentReceivedAmount;
    }
 
    public String getStartBeginTime() {
        return startBeginTime;
    }
 
    public void setStartBeginTime(String startBeginTime) {
        this.startBeginTime = startBeginTime;
    }
 
    public String getStartFinishTime() {
        return startFinishTime;
    }
 
    public void setStartFinishTime(String startFinishTime) {
        this.startFinishTime = startFinishTime;
    }
 
    public String getEndBeginTime() {
        return endBeginTime;
    }
 
    public void setEndBeginTime(String endBeginTime) {
        this.endBeginTime = endBeginTime;
    }
 
    public String getEndFinishTime() {
        return endFinishTime;
    }
 
    public void setEndFinishTime(String endFinishTime) {
        this.endFinishTime = endFinishTime;
    }
 
    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;
    }
 
    public String getNextStartTime() {
        return nextStartTime;
    }
 
    public void setNextStartTime(String nextStartTime) {
        this.nextStartTime = nextStartTime;
    }
 
    public String getNewBeginTime() {
        return newBeginTime;
    }
 
    public void setNewBeginTime(String newBeginTime) {
        this.newBeginTime = newBeginTime;
    }
 
    public String getNewFinishTime() {
        return newFinishTime;
    }
 
    public void setNewFinishTime(String newFinishTime) {
        this.newFinishTime = newFinishTime;
    }
 
    public String getTotalOweAmount() {
        return totalOweAmount;
    }
 
    public void setTotalOweAmount(String totalOweAmount) {
        this.totalOweAmount = totalOweAmount;
    }
 
    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 getbillState() {
        return billState;
    }
 
    public void setbillState(String billState) {
        this.billState = billState;
    }
 
    public String getbillStateName() {
        return billStateName;
    }
 
    public void setbillStateName(String billStateName) {
        this.billStateName = billStateName;
    }
}