wuxw
2025-03-20 3b6f49f1123f68bb6d1424070600158f85b66a30
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
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
1230
1231
1232
1233
1234
1235
1236
1237
1238
1239
1240
1241
1242
package com.java110.dto.reportFee;
 
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 objNameLike;
    private String objNameNum;
    private String receivedAmount;
    private String payableAmount;
    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[] communityIds;
    private String feeCreateTime;
    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 roomName;
    private String carNum;
    private String psName;
    private String contractCode;
    private String payerObjType;
    private String payerObjId;
    private String payerObjName;
 
 
    private String ownerName;
    private String ownerNameLike;
 
    private String ownerTel;
    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 statusCd = "0";
 
    private int oweDay;
    private String deadlineTime;
 
    private String curMaxTime;
    private String importFeeName;
 
    private String oId;
 
    private String detailState;
    private String detailStateName;
 
    private String noDeduction; //无抵扣
    private String cashDeduction; //现金账户抵扣
    private String pointDeduction; //积分账户抵扣
    private String discountCouponDeduction; //优惠卷抵扣
 
    //支付方式
    private String primeRate;
 
    private double configReceivedAmount = 0;
 
    //应收总金额(小计)
    private String totalReceivableAmount;
 
    //实收总金额(小计)
    private String totalReceivedAmount;
 
    //无抵扣金额(小计)
    private String totalNoDeduction;
    //现金账户抵扣金额(小计)
    private String totalCashDeduction;
    //积分账户抵扣金额(小计)
    private String totalPointDeduction;
    //优惠券抵扣金额(小计)
    private String totalDiscountCouponDeduction;
 
    //应收总金额(大计)
    private String allReceivableAmount;
 
    //实收总金额(大计)
    private String allReceivedAmount;
 
    //实收总金额(大计)
    private String allOweAmount;
 
    //无抵扣(大计)
    private String allNoDeduction;
    //现金账户抵扣(大计)
    private String allCashDeduction;
    //积分账户抵扣(大计)
    private String allPointDeduction;
    //优惠卷抵扣(大计)
    private String allDiscountCouponDeduction;
 
    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 withholdAmount;
 
    //收费率
    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 cashierId;
    private String cashierName;
 
    private String feeFlag;
 
    private String preOweAmount;
 
    private String ruleNameOne;
    private String ruleNameTwo;
    private String ruleNameThree;
    private String ruleNameFour;
    private String ruleNameFive;
    private String ruleNameSix;
 
    private String discountPriceOne;
    private String discountPriceTwo;
    private String discountPriceThree;
    private String discountPriceFour;
    private String discountPriceFive;
    private String discountPriceSix;
 
    private String discountSmallTypeOne;
    private String discountSmallTypeTwo;
    private String discountSmallTypeThree;
    private String discountSmallTypeFour;
    private String discountSmallTypeFive;
    private String discountSmallTypeSix;
 
    private String communityName;
 
    private String fadState;
    private String fadAmount;
 
    public String getNoDeduction() {
        return noDeduction;
    }
 
    public void setNoDeduction(String noDeduction) {
        this.noDeduction = noDeduction;
    }
 
    public String getCashDeduction() {
        return cashDeduction;
    }
 
    public void setCashDeduction(String cashDeduction) {
        this.cashDeduction = cashDeduction;
    }
 
    public String getPointDeduction() {
        return pointDeduction;
    }
 
    public void setPointDeduction(String pointDeduction) {
        this.pointDeduction = pointDeduction;
    }
 
    public String getDiscountCouponDeduction() {
        return discountCouponDeduction;
    }
 
    public void setDiscountCouponDeduction(String discountCouponDeduction) {
        this.discountCouponDeduction = discountCouponDeduction;
    }
 
    private String acctAmount;
    private String discountAmount;
    private String lateAmount;
 
    public String getPayerObjId() {
        return payerObjId;
    }
 
    public void setPayerObjId(String payerObjId) {
        this.payerObjId = payerObjId;
    }
 
    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[] 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 getPsName() {
        return psName;
    }
 
    public void setPsName(String psName) {
        this.psName = psName;
    }
 
    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 getWithholdAmount() {
        return withholdAmount;
    }
 
    public void setWithholdAmount(String withholdAmount) {
        this.withholdAmount = withholdAmount;
    }
 
    public String getCashierId() {
        return cashierId;
    }
 
    public void setCashierId(String cashierId) {
        this.cashierId = cashierId;
    }
 
    public String getCashierName() {
        return cashierName;
    }
 
    public void setCashierName(String cashierName) {
        this.cashierName = cashierName;
    }
 
    public String getFeeFlag() {
        return feeFlag;
    }
 
    public void setFeeFlag(String feeFlag) {
        this.feeFlag = feeFlag;
    }
 
    public String getPreOweAmount() {
        return preOweAmount;
    }
 
    public void setPreOweAmount(String preOweAmount) {
        this.preOweAmount = preOweAmount;
    }
 
    public String getRuleNameOne() {
        return ruleNameOne;
    }
 
    public void setRuleNameOne(String ruleNameOne) {
        this.ruleNameOne = ruleNameOne;
    }
 
    public String getRuleNameTwo() {
        return ruleNameTwo;
    }
 
    public void setRuleNameTwo(String ruleNameTwo) {
        this.ruleNameTwo = ruleNameTwo;
    }
 
    public String getRuleNameThree() {
        return ruleNameThree;
    }
 
    public void setRuleNameThree(String ruleNameThree) {
        this.ruleNameThree = ruleNameThree;
    }
 
    public String getRuleNameFour() {
        return ruleNameFour;
    }
 
    public void setRuleNameFour(String ruleNameFour) {
        this.ruleNameFour = ruleNameFour;
    }
 
    public String getRuleNameFive() {
        return ruleNameFive;
    }
 
    public void setRuleNameFive(String ruleNameFive) {
        this.ruleNameFive = ruleNameFive;
    }
 
    public String getRuleNameSix() {
        return ruleNameSix;
    }
 
    public void setRuleNameSix(String ruleNameSix) {
        this.ruleNameSix = ruleNameSix;
    }
 
    public String getDiscountPriceOne() {
        return discountPriceOne;
    }
 
    public void setDiscountPriceOne(String discountPriceOne) {
        this.discountPriceOne = discountPriceOne;
    }
 
    public String getDiscountPriceTwo() {
        return discountPriceTwo;
    }
 
    public void setDiscountPriceTwo(String discountPriceTwo) {
        this.discountPriceTwo = discountPriceTwo;
    }
 
    public String getDiscountPriceThree() {
        return discountPriceThree;
    }
 
    public void setDiscountPriceThree(String discountPriceThree) {
        this.discountPriceThree = discountPriceThree;
    }
 
    public String getDiscountPriceFour() {
        return discountPriceFour;
    }
 
    public void setDiscountPriceFour(String discountPriceFour) {
        this.discountPriceFour = discountPriceFour;
    }
 
    public String getDiscountPriceFive() {
        return discountPriceFive;
    }
 
    public void setDiscountPriceFive(String discountPriceFive) {
        this.discountPriceFive = discountPriceFive;
    }
 
    public String getDiscountPriceSix() {
        return discountPriceSix;
    }
 
    public void setDiscountPriceSix(String discountPriceSix) {
        this.discountPriceSix = discountPriceSix;
    }
 
    public String getDiscountSmallTypeOne() {
        return discountSmallTypeOne;
    }
 
    public void setDiscountSmallTypeOne(String discountSmallTypeOne) {
        this.discountSmallTypeOne = discountSmallTypeOne;
    }
 
    public String getDiscountSmallTypeTwo() {
        return discountSmallTypeTwo;
    }
 
    public void setDiscountSmallTypeTwo(String discountSmallTypeTwo) {
        this.discountSmallTypeTwo = discountSmallTypeTwo;
    }
 
    public String getDiscountSmallTypeThree() {
        return discountSmallTypeThree;
    }
 
    public void setDiscountSmallTypeThree(String discountSmallTypeThree) {
        this.discountSmallTypeThree = discountSmallTypeThree;
    }
 
    public String getDiscountSmallTypeFour() {
        return discountSmallTypeFour;
    }
 
    public void setDiscountSmallTypeFour(String discountSmallTypeFour) {
        this.discountSmallTypeFour = discountSmallTypeFour;
    }
 
    public String getDiscountSmallTypeFive() {
        return discountSmallTypeFive;
    }
 
    public void setDiscountSmallTypeFive(String discountSmallTypeFive) {
        this.discountSmallTypeFive = discountSmallTypeFive;
    }
 
    public String getDiscountSmallTypeSix() {
        return discountSmallTypeSix;
    }
 
    public void setDiscountSmallTypeSix(String discountSmallTypeSix) {
        this.discountSmallTypeSix = discountSmallTypeSix;
    }
 
 
    public String getDetailState() {
        return detailState;
    }
 
    public void setDetailState(String detailState) {
        this.detailState = detailState;
    }
 
    public String getDetailStateName() {
        return detailStateName;
    }
 
    public void setDetailStateName(String detailStateName) {
        this.detailStateName = detailStateName;
    }
 
    public String getTotalNoDeduction() {
        return totalNoDeduction;
    }
 
    public void setTotalNoDeduction(String totalNoDeduction) {
        this.totalNoDeduction = totalNoDeduction;
    }
 
    public String getTotalCashDeduction() {
        return totalCashDeduction;
    }
 
    public void setTotalCashDeduction(String totalCashDeduction) {
        this.totalCashDeduction = totalCashDeduction;
    }
 
    public String getTotalPointDeduction() {
        return totalPointDeduction;
    }
 
    public void setTotalPointDeduction(String totalPointDeduction) {
        this.totalPointDeduction = totalPointDeduction;
    }
 
    public String getTotalDiscountCouponDeduction() {
        return totalDiscountCouponDeduction;
    }
 
    public void setTotalDiscountCouponDeduction(String totalDiscountCouponDeduction) {
        this.totalDiscountCouponDeduction = totalDiscountCouponDeduction;
    }
 
    public String getAllNoDeduction() {
        return allNoDeduction;
    }
 
    public void setAllNoDeduction(String allNoDeduction) {
        this.allNoDeduction = allNoDeduction;
    }
 
    public String getAllCashDeduction() {
        return allCashDeduction;
    }
 
    public void setAllCashDeduction(String allCashDeduction) {
        this.allCashDeduction = allCashDeduction;
    }
 
    public String getAllPointDeduction() {
        return allPointDeduction;
    }
 
    public void setAllPointDeduction(String allPointDeduction) {
        this.allPointDeduction = allPointDeduction;
    }
 
    public String getAllDiscountCouponDeduction() {
        return allDiscountCouponDeduction;
    }
 
    public void setAllDiscountCouponDeduction(String allDiscountCouponDeduction) {
        this.allDiscountCouponDeduction = allDiscountCouponDeduction;
    }
 
    public String getFadState() {
        return fadState;
    }
 
    public void setFadState(String fadState) {
        this.fadState = fadState;
    }
 
    public String getFadAmount() {
        return fadAmount;
    }
 
    public void setFadAmount(String fadAmount) {
        this.fadAmount = fadAmount;
    }
 
    public String getAcctAmount() {
        return acctAmount;
    }
 
    public void setAcctAmount(String acctAmount) {
        this.acctAmount = acctAmount;
    }
 
    public String getDiscountAmount() {
        return discountAmount;
    }
 
    public void setDiscountAmount(String discountAmount) {
        this.discountAmount = discountAmount;
    }
 
    public String getLateAmount() {
        return lateAmount;
    }
 
    public void setLateAmount(String lateAmount) {
        this.lateAmount = lateAmount;
    }
 
    public String getPayerObjName() {
        return payerObjName;
    }
 
    public void setPayerObjName(String payerObjName) {
        this.payerObjName = payerObjName;
    }
 
    public String getRoomName() {
        return roomName;
    }
 
    public void setRoomName(String roomName) {
        this.roomName = roomName;
    }
 
    public String getOwnerTel() {
        return ownerTel;
    }
 
    public void setOwnerTel(String ownerTel) {
        this.ownerTel = ownerTel;
    }
 
    public String getObjNameLike() {
        return objNameLike;
    }
 
    public void setObjNameLike(String objNameLike) {
        this.objNameLike = objNameLike;
    }
 
    public String getOwnerNameLike() {
        return ownerNameLike;
    }
 
    public void setOwnerNameLike(String ownerNameLike) {
        this.ownerNameLike = ownerNameLike;
    }
 
    public String getCommunityName() {
        return communityName;
    }
 
    public void setCommunityName(String communityName) {
        this.communityName = communityName;
    }
 
    public String[] getCommunityIds() {
        return communityIds;
    }
 
    public void setCommunityIds(String[] communityIds) {
        this.communityIds = communityIds;
    }
}