001 /*
002 * Copyright 2011 The Kuali Foundation.
003 *
004 * Licensed under the Educational Community License, Version 2.0 (the "License");
005 * you may not use this file except in compliance with the License.
006 * You may obtain a copy of the License at
007 *
008 * http://www.opensource.org/licenses/ecl2.php
009 *
010 * Unless required by applicable law or agreed to in writing, software
011 * distributed under the License is distributed on an "AS IS" BASIS,
012 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
013 * See the License for the specific language governing permissions and
014 * limitations under the License.
015 */
016 package org.kuali.kfs.module.bc.businessobject;
017
018 import java.math.BigDecimal;
019
020 /**
021 * Budget Construction Organization SubFund Summary Report Business Object.
022 */
023 public class BudgetConstructionOrgSubFundSummaryReport {
024
025 // Header parts
026 private String fiscalYear;
027 private String orgChartOfAccountsCode;
028 private String orgChartOfAccountDescription;
029 private String organizationCode;
030 private String organizationName;
031 private String chartOfAccountsCode;
032 private String chartOfAccountDescription;
033
034 private String consHdr;
035 private String fundGroupCode;
036 private String fundGroupName;
037 private String subFundGroupCode;
038 private String subFundGroupDescription;
039 private String baseFy;
040 private String reqFy;
041 private String header1;
042 private String header2;
043 private String header3;
044 private String header4;
045 private String header5;
046 private String header6;
047
048 // Body parts
049 private String incExpDesc;
050 private Integer baseAmount;
051 private Integer reqAmount;
052 private Integer amountChange;
053 private BigDecimal percentChange = BigDecimal.ZERO;
054
055 // Total parts
056 private Integer subFundTotalRevenueBaseAmount = 0;
057 private Integer subFundTotalRevenueReqAmount = 0;
058 private Integer subFundTotalRevenueAmountChange = 0;
059 private BigDecimal subFundTotalRevenuePercentChange = BigDecimal.ZERO;
060
061 private Integer totalRevenueBaseAmount = 0;
062 private Integer totalGrossBaseAmount = 0;
063 private Integer totalTransferInBaseAmount = 0;
064 private Integer totalNetTransferBaseAmount = 0;
065
066 private Integer totalRevenueReqAmount = 0;
067 private Integer totalGrossReqAmount = 0;
068 private Integer totalTransferInReqAmount = 0;
069 private Integer totalNetTransferReqAmount = 0;
070
071 private Integer totalRevenueAmountChange = 0;
072 private Integer totalGrossAmountChange = 0;
073 private Integer totalTransferAmountChange = 0;
074 private Integer totalNetTransferAmountChange = 0;
075
076 private BigDecimal totalRevenuePercentChange = BigDecimal.ZERO;
077 private BigDecimal totalGrossPercentChange = BigDecimal.ZERO;
078 private BigDecimal totalTransferInPercentChange = BigDecimal.ZERO;
079 private BigDecimal totalNetTransferPercentChange = BigDecimal.ZERO;
080
081 private Integer revExpDifferenceBaseAmount = 0;
082 private Integer revExpDifferenceReqAmount = 0;
083 private Integer revExpDifferenceAmountChange = 0;
084 private BigDecimal revExpDifferencePercentChange = BigDecimal.ZERO;
085
086 /**
087 * Gets the amountChange
088 *
089 * @return Returns the amountChange.
090 */
091 public Integer getAmountChange() {
092 return amountChange;
093 }
094
095 /**
096 * Sets the amountChange
097 *
098 * @param amountChange The amountChange to set.
099 */
100 public void setAmountChange(Integer amountChange) {
101 this.amountChange = amountChange;
102 }
103
104 /**
105 * Gets the baseAmount
106 *
107 * @return Returns the baseAmount.
108 */
109 public Integer getBaseAmount() {
110 return baseAmount;
111 }
112
113 /**
114 * Sets the baseAmount
115 *
116 * @param baseAmount The baseAmount to set.
117 */
118 public void setBaseAmount(Integer baseAmount) {
119 this.baseAmount = baseAmount;
120 }
121
122 /**
123 * Gets the baseFy
124 *
125 * @return Returns the baseFy.
126 */
127 public String getBaseFy() {
128 return baseFy;
129 }
130
131 /**
132 * Sets the baseFy
133 *
134 * @param baseFy The baseFy to set.
135 */
136 public void setBaseFy(String baseFy) {
137 this.baseFy = baseFy;
138 }
139
140 /**
141 * Gets the consHdr
142 *
143 * @return Returns the consHdr.
144 */
145 public String getConsHdr() {
146 return consHdr;
147 }
148
149 /**
150 * Sets the consHdr
151 *
152 * @param consHdr The consHdr to set.
153 */
154 public void setConsHdr(String consHdr) {
155 this.consHdr = consHdr;
156 }
157
158 /**
159 * Gets the fiscalYear
160 *
161 * @return Returns the fiscalYear.
162 */
163 public String getFiscalYear() {
164 return fiscalYear;
165 }
166
167 /**
168 * Sets the fiscalYear
169 *
170 * @param fiscalYear The fiscalYear to set.
171 */
172 public void setFiscalYear(String fiscalYear) {
173 this.fiscalYear = fiscalYear;
174 }
175
176 /**
177 * Gets the fundGroupCode
178 *
179 * @return Returns the fundGroupCode.
180 */
181 public String getFundGroupCode() {
182 return fundGroupCode;
183 }
184
185 /**
186 * Sets the fundGroupCode
187 *
188 * @param fundGroupCode The fundGroupCode to set.
189 */
190 public void setFundGroupCode(String fundGroupCode) {
191 this.fundGroupCode = fundGroupCode;
192 }
193
194 /**
195 * Gets the header1
196 *
197 * @return Returns the header1.
198 */
199 public String getHeader1() {
200 return header1;
201 }
202
203 /**
204 * Sets the header1
205 *
206 * @param header1 The header1 to set.
207 */
208 public void setHeader1(String header1) {
209 this.header1 = header1;
210 }
211
212 /**
213 * Gets the header2
214 *
215 * @return Returns the header2.
216 */
217 public String getHeader2() {
218 return header2;
219 }
220
221 /**
222 * Sets the header2
223 *
224 * @param header2 The header2 to set.
225 */
226 public void setHeader2(String header2) {
227 this.header2 = header2;
228 }
229
230 /**
231 * Gets the header3
232 *
233 * @return Returns the header3.
234 */
235 public String getHeader3() {
236 return header3;
237 }
238
239 /**
240 * Sets the header3
241 *
242 * @param header3 The header3 to set.
243 */
244 public void setHeader3(String header3) {
245 this.header3 = header3;
246 }
247
248 /**
249 * Gets the header4
250 *
251 * @return Returns the header4.
252 */
253 public String getHeader4() {
254 return header4;
255 }
256
257 /**
258 * Sets the header4
259 *
260 * @param header4 The header4 to set.
261 */
262 public void setHeader4(String header4) {
263 this.header4 = header4;
264 }
265
266 /**
267 * Gets the header5
268 *
269 * @return Returns the header5.
270 */
271 public String getHeader5() {
272 return header5;
273 }
274
275 /**
276 * Sets the header5
277 *
278 * @param header5 The header5 to set.
279 */
280 public void setHeader5(String header5) {
281 this.header5 = header5;
282 }
283
284 /**
285 * Gets the header6
286 *
287 * @return Returns the header6.
288 */
289 public String getHeader6() {
290 return header6;
291 }
292
293 /**
294 * Sets the header6
295 *
296 * @param header6 The header6 to set.
297 */
298 public void setHeader6(String header6) {
299 this.header6 = header6;
300 }
301
302 /**
303 * Gets the incExpDesc
304 *
305 * @return Returns the incExpDesc.
306 */
307 public String getIncExpDesc() {
308 return incExpDesc;
309 }
310
311 /**
312 * Sets the incExpDesc
313 *
314 * @param incExpDesc The incExpDesc to set.
315 */
316 public void setIncExpDesc(String incExpDesc) {
317 this.incExpDesc = incExpDesc;
318 }
319
320 /**
321 * Gets the organizationCode
322 *
323 * @return Returns the organizationCode.
324 */
325 public String getOrganizationCode() {
326 return organizationCode;
327 }
328
329 /**
330 * Sets the organizationCode
331 *
332 * @param organizationCode The organizationCode to set.
333 */
334 public void setOrganizationCode(String organizationCode) {
335 this.organizationCode = organizationCode;
336 }
337
338 /**
339 * Gets the organizationName
340 *
341 * @return Returns the organizationName.
342 */
343 public String getOrganizationName() {
344 return organizationName;
345 }
346
347 /**
348 * Sets the organizationName
349 *
350 * @param organizationName The organizationName to set.
351 */
352 public void setOrganizationName(String organizationName) {
353 this.organizationName = organizationName;
354 }
355
356 /**
357 * Gets the percentChange
358 *
359 * @return Returns the percentChange.
360 */
361 public BigDecimal getPercentChange() {
362 return percentChange;
363 }
364
365 /**
366 * Sets the percentChange
367 *
368 * @param percentChange The percentChange to set.
369 */
370 public void setPercentChange(BigDecimal percentChange) {
371 this.percentChange = percentChange;
372 }
373
374 /**
375 * Gets the reqAmount
376 *
377 * @return Returns the reqAmount.
378 */
379 public Integer getReqAmount() {
380 return reqAmount;
381 }
382
383 /**
384 * Sets the reqAmount
385 *
386 * @param reqAmount The reqAmount to set.
387 */
388 public void setReqAmount(Integer reqAmount) {
389 this.reqAmount = reqAmount;
390 }
391
392 /**
393 * Gets the reqFy
394 *
395 * @return Returns the reqFy.
396 */
397 public String getReqFy() {
398 return reqFy;
399 }
400
401 /**
402 * Sets the reqFy
403 *
404 * @param reqFy The reqFy to set.
405 */
406 public void setReqFy(String reqFy) {
407 this.reqFy = reqFy;
408 }
409
410 /**
411 * Gets the revExpDifferenceAmountChange
412 *
413 * @return Returns the revExpDifferenceAmountChange.
414 */
415 public Integer getRevExpDifferenceAmountChange() {
416 return revExpDifferenceAmountChange;
417 }
418
419 /**
420 * Sets the revExpDifferenceAmountChange
421 *
422 * @param revExpDifferenceAmountChange The revExpDifferenceAmountChange to set.
423 */
424 public void setRevExpDifferenceAmountChange(Integer revExpDifferenceAmountChange) {
425 this.revExpDifferenceAmountChange = revExpDifferenceAmountChange;
426 }
427
428 /**
429 * Gets the revExpDifferenceBaseAmount
430 *
431 * @return Returns the revExpDifferenceBaseAmount.
432 */
433 public Integer getRevExpDifferenceBaseAmount() {
434 return revExpDifferenceBaseAmount;
435 }
436
437 /**
438 * Sets the revExpDifferenceBaseAmount
439 *
440 * @param revExpDifferenceBaseAmount The revExpDifferenceBaseAmount to set.
441 */
442 public void setRevExpDifferenceBaseAmount(Integer revExpDifferenceBaseAmount) {
443 this.revExpDifferenceBaseAmount = revExpDifferenceBaseAmount;
444 }
445
446 /**
447 * Gets the revExpDifferencePercentChange
448 *
449 * @return Returns the revExpDifferencePercentChange.
450 */
451 public BigDecimal getRevExpDifferencePercentChange() {
452 return revExpDifferencePercentChange;
453 }
454
455 /**
456 * Sets the revExpDifferencePercentChange
457 *
458 * @param revExpDifferencePercentChange The revExpDifferencePercentChange to set.
459 */
460 public void setRevExpDifferencePercentChange(BigDecimal revExpDifferencePercentChange) {
461 this.revExpDifferencePercentChange = revExpDifferencePercentChange;
462 }
463
464 /**
465 * Gets the revExpDifferenceReqAmount
466 *
467 * @return Returns the revExpDifferenceReqAmount.
468 */
469 public Integer getRevExpDifferenceReqAmount() {
470 return revExpDifferenceReqAmount;
471 }
472
473 /**
474 * Sets the revExpDifferenceReqAmount
475 *
476 * @param revExpDifferenceReqAmount The revExpDifferenceReqAmount to set.
477 */
478 public void setRevExpDifferenceReqAmount(Integer revExpDifferenceReqAmount) {
479 this.revExpDifferenceReqAmount = revExpDifferenceReqAmount;
480 }
481
482 /**
483 * Gets the subFundGroupCode
484 *
485 * @return Returns the subFundGroupCode.
486 */
487 public String getSubFundGroupCode() {
488 return subFundGroupCode;
489 }
490
491 /**
492 * Sets the subFundGroupCode
493 *
494 * @param subFundGroupCode The subFundGroupCode to set.
495 */
496 public void setSubFundGroupCode(String subFundGroupCode) {
497 this.subFundGroupCode = subFundGroupCode;
498 }
499
500 /**
501 * Gets the subFundGroupDescription
502 *
503 * @return Returns the subFundGroupDescription.
504 */
505 public String getSubFundGroupDescription() {
506 return subFundGroupDescription;
507 }
508
509 /**
510 * Sets the subFundGroupDescription
511 *
512 * @param subFundGroupDescription The subFundGroupDescription to set.
513 */
514 public void setSubFundGroupDescription(String subFundGroupDescription) {
515 this.subFundGroupDescription = subFundGroupDescription;
516 }
517
518 /**
519 * Gets the totalGrossAmountChange
520 *
521 * @return Returns the totalGrossAmountChange.
522 */
523 public Integer getTotalGrossAmountChange() {
524 return totalGrossAmountChange;
525 }
526
527 /**
528 * Sets the totalGrossAmountChange
529 *
530 * @param totalGrossAmountChange The totalGrossAmountChange to set.
531 */
532 public void setTotalGrossAmountChange(Integer totalGrossAmountChange) {
533 this.totalGrossAmountChange = totalGrossAmountChange;
534 }
535
536 /**
537 * Gets the totalGrossBaseAmount
538 *
539 * @return Returns the totalGrossBaseAmount.
540 */
541 public Integer getTotalGrossBaseAmount() {
542 return totalGrossBaseAmount;
543 }
544
545 /**
546 * Sets the totalGrossBaseAmount
547 *
548 * @param totalGrossBaseAmount The totalGrossBaseAmount to set.
549 */
550 public void setTotalGrossBaseAmount(Integer totalGrossBaseAmount) {
551 this.totalGrossBaseAmount = totalGrossBaseAmount;
552 }
553
554 /**
555 * Gets the totalGrossPercentChange
556 *
557 * @return Returns the totalGrossPercentChange.
558 */
559 public BigDecimal getTotalGrossPercentChange() {
560 return totalGrossPercentChange;
561 }
562
563 /**
564 * Sets the totalGrossPercentChange
565 *
566 * @param totalGrossPercentChange The totalGrossPercentChange to set.
567 */
568 public void setTotalGrossPercentChange(BigDecimal totalGrossPercentChange) {
569 this.totalGrossPercentChange = totalGrossPercentChange;
570 }
571
572 /**
573 * Gets the totalGrossReqAmount
574 *
575 * @return Returns the totalGrossReqAmount.
576 */
577 public Integer getTotalGrossReqAmount() {
578 return totalGrossReqAmount;
579 }
580
581 /**
582 * Sets the totalGrossReqAmount
583 *
584 * @param totalGrossReqAmount The totalGrossReqAmount to set.
585 */
586 public void setTotalGrossReqAmount(Integer totalGrossReqAmount) {
587 this.totalGrossReqAmount = totalGrossReqAmount;
588 }
589
590 /**
591 * Gets the totalNetTransferAmountChange
592 *
593 * @return Returns the totalNetTransferAmountChange.
594 */
595 public Integer getTotalNetTransferAmountChange() {
596 return totalNetTransferAmountChange;
597 }
598
599 /**
600 * Sets the totalNetTransferAmountChange
601 *
602 * @param totalNetTransferAmountChange The totalNetTransferAmountChange to set.
603 */
604 public void setTotalNetTransferAmountChange(Integer totalNetTransferAmountChange) {
605 this.totalNetTransferAmountChange = totalNetTransferAmountChange;
606 }
607
608 /**
609 * Gets the totalNetTransferBaseAmount
610 *
611 * @return Returns the totalNetTransferBaseAmount.
612 */
613 public Integer getTotalNetTransferBaseAmount() {
614 return totalNetTransferBaseAmount;
615 }
616
617 /**
618 * Sets the totalNetTransferBaseAmount
619 *
620 * @param totalNetTransferBaseAmount The totalNetTransferBaseAmount to set.
621 */
622 public void setTotalNetTransferBaseAmount(Integer totalNetTransferBaseAmount) {
623 this.totalNetTransferBaseAmount = totalNetTransferBaseAmount;
624 }
625
626 /**
627 * Gets the totalNetTransferPercentChange
628 *
629 * @return Returns the totalNetTransferPercentChange.
630 */
631 public BigDecimal getTotalNetTransferPercentChange() {
632 return totalNetTransferPercentChange;
633 }
634
635 /**
636 * Sets the totalNetTransferPercentChange
637 *
638 * @param totalNetTransferPercentChange The totalNetTransferPercentChange to set.
639 */
640 public void setTotalNetTransferPercentChange(BigDecimal totalNetTransferPercentChange) {
641 this.totalNetTransferPercentChange = totalNetTransferPercentChange;
642 }
643
644 /**
645 * Gets the totalNetTransferReqAmount
646 *
647 * @return Returns the totalNetTransferReqAmount.
648 */
649 public Integer getTotalNetTransferReqAmount() {
650 return totalNetTransferReqAmount;
651 }
652
653 /**
654 * Sets the totalNetTransferReqAmount
655 *
656 * @param totalNetTransferReqAmount The totalNetTransferReqAmount to set.
657 */
658 public void setTotalNetTransferReqAmount(Integer totalNetTransferReqAmount) {
659 this.totalNetTransferReqAmount = totalNetTransferReqAmount;
660 }
661
662 /**
663 * Gets the totalRevenueAmountChange
664 *
665 * @return Returns the totalRevenueAmountChange.
666 */
667 public Integer getTotalRevenueAmountChange() {
668 return totalRevenueAmountChange;
669 }
670
671 /**
672 * Sets the totalRevenueAmountChange
673 *
674 * @param totalRevenueAmountChange The totalRevenueAmountChange to set.
675 */
676 public void setTotalRevenueAmountChange(Integer totalRevenueAmountChange) {
677 this.totalRevenueAmountChange = totalRevenueAmountChange;
678 }
679
680 /**
681 * Gets the totalRevenueBaseAmount
682 *
683 * @return Returns the totalRevenueBaseAmount.
684 */
685 public Integer getTotalRevenueBaseAmount() {
686 return totalRevenueBaseAmount;
687 }
688
689 /**
690 * Sets the totalRevenueBaseAmount
691 *
692 * @param totalRevenueBaseAmount The totalRevenueBaseAmount to set.
693 */
694 public void setTotalRevenueBaseAmount(Integer totalRevenueBaseAmount) {
695 this.totalRevenueBaseAmount = totalRevenueBaseAmount;
696 }
697
698 /**
699 * Gets the totalRevenuePercentChange
700 *
701 * @return Returns the totalRevenuePercentChange.
702 */
703 public BigDecimal getTotalRevenuePercentChange() {
704 return totalRevenuePercentChange;
705 }
706
707 /**
708 * Sets the totalRevenuePercentChange
709 *
710 * @param totalRevenuePercentChange The totalRevenuePercentChange to set.
711 */
712 public void setTotalRevenuePercentChange(BigDecimal totalRevenuePercentChange) {
713 this.totalRevenuePercentChange = totalRevenuePercentChange;
714 }
715
716 /**
717 * Gets the payrollEndDateFiscalPeriod
718 *
719 * @return Returns the payrollEndDateFiscalPeriod.
720 */
721 public Integer getTotalRevenueReqAmount() {
722 return totalRevenueReqAmount;
723 }
724
725 /**
726 * Sets the payrollEndDateFiscalPeriod
727 *
728 * @param payrollEndDateFiscalPeriod The payrollEndDateFiscalPeriod to set.
729 */
730 public void setTotalRevenueReqAmount(Integer totalRevenueReqAmount) {
731 this.totalRevenueReqAmount = totalRevenueReqAmount;
732 }
733
734 /**
735 * Gets the totalTransferAmountChange
736 *
737 * @return Returns the totalTransferAmountChange.
738 */
739 public Integer getTotalTransferAmountChange() {
740 return totalTransferAmountChange;
741 }
742
743 /**
744 * Sets the totalTransferAmountChange
745 *
746 * @param totalTransferAmountChange The totalTransferAmountChange to set.
747 */
748 public void setTotalTransferAmountChange(Integer totalTransferAmountChange) {
749 this.totalTransferAmountChange = totalTransferAmountChange;
750 }
751
752 /**
753 * Gets the totalTransferInBaseAmount
754 *
755 * @return Returns the totalTransferInBaseAmount.
756 */
757 public Integer getTotalTransferInBaseAmount() {
758 return totalTransferInBaseAmount;
759 }
760
761 /**
762 * Sets the totalTransferInBaseAmount
763 *
764 * @param totalTransferInBaseAmount The totalTransferInBaseAmount to set.
765 */
766 public void setTotalTransferInBaseAmount(Integer totalTransferInBaseAmount) {
767 this.totalTransferInBaseAmount = totalTransferInBaseAmount;
768 }
769
770 /**
771 * Gets the totalTransferInPercentChange
772 *
773 * @return Returns the totalTransferInPercentChange.
774 */
775 public BigDecimal getTotalTransferInPercentChange() {
776 return totalTransferInPercentChange;
777 }
778
779 /**
780 * Sets the totalTransferInPercentChange
781 *
782 * @param totalTransferInPercentChange The totalTransferInPercentChange to set.
783 */
784 public void setTotalTransferInPercentChange(BigDecimal totalTransferInPercentChange) {
785 this.totalTransferInPercentChange = totalTransferInPercentChange;
786 }
787
788 /**
789 * Gets the totalTransferInReqAmount
790 *
791 * @return Returns the totalTransferInReqAmount.
792 */
793 public Integer getTotalTransferInReqAmount() {
794 return totalTransferInReqAmount;
795 }
796
797 /**
798 * Sets the totalTransferInReqAmount
799 *
800 * @param totalTransferInReqAmount The totalTransferInReqAmount to set.
801 */
802 public void setTotalTransferInReqAmount(Integer totalTransferInReqAmount) {
803 this.totalTransferInReqAmount = totalTransferInReqAmount;
804 }
805
806 /**
807 * Gets the fundGroupName
808 *
809 * @return Returns the fundGroupName.
810 */
811 public String getFundGroupName() {
812 return fundGroupName;
813 }
814
815 /**
816 * Sets the fundGroupName
817 *
818 * @param fundGroupName The fundGroupName to set.
819 */
820 public void setFundGroupName(String fundGroupName) {
821 this.fundGroupName = fundGroupName;
822 }
823
824 /**
825 * Gets the chartOfAccountDescription
826 *
827 * @return Returns the chartOfAccountDescription.
828 */
829 public String getChartOfAccountDescription() {
830 return chartOfAccountDescription;
831 }
832
833 /**
834 * Sets the chartOfAccountDescription
835 *
836 * @param chartOfAccountDescription The chartOfAccountDescription to set.
837 */
838 public void setChartOfAccountDescription(String chartOfAccountDescription) {
839 this.chartOfAccountDescription = chartOfAccountDescription;
840 }
841
842 /**
843 * Gets the chartOfAccountsCode
844 *
845 * @return Returns the chartOfAccountsCode.
846 */
847 public String getChartOfAccountsCode() {
848 return chartOfAccountsCode;
849 }
850
851 /**
852 * Sets the chartOfAccountsCode
853 *
854 * @param chartOfAccountsCode The chartOfAccountsCode to set.
855 */
856 public void setChartOfAccountsCode(String chartOfAccountsCode) {
857 this.chartOfAccountsCode = chartOfAccountsCode;
858 }
859
860 /**
861 * Gets the orgChartOfAccountDescription
862 *
863 * @return Returns the orgChartOfAccountDescription.
864 */
865 public String getOrgChartOfAccountDescription() {
866 return orgChartOfAccountDescription;
867 }
868
869 /**
870 * Sets the orgChartOfAccountDescription
871 *
872 * @param orgChartOfAccountDescription The orgChartOfAccountDescription to set.
873 */
874 public void setOrgChartOfAccountDescription(String orgChartOfAccountDescription) {
875 this.orgChartOfAccountDescription = orgChartOfAccountDescription;
876 }
877
878 /**
879 * Gets the orgChartOfAccountsCode
880 *
881 * @return Returns the orgChartOfAccountsCode.
882 */
883 public String getOrgChartOfAccountsCode() {
884 return orgChartOfAccountsCode;
885 }
886
887 /**
888 * Sets the orgChartOfAccountsCode
889 *
890 * @param orgChartOfAccountsCode The orgChartOfAccountsCode to set.
891 */
892 public void setOrgChartOfAccountsCode(String orgChartOfAccountsCode) {
893 this.orgChartOfAccountsCode = orgChartOfAccountsCode;
894 }
895
896 /**
897 * Gets the subFundTotalRevenueAmountChange
898 *
899 * @return Returns the subFundTotalRevenueAmountChange.
900 */
901 public Integer getSubFundTotalRevenueAmountChange() {
902 return subFundTotalRevenueAmountChange;
903 }
904
905 /**
906 * Sets the subFundTotalRevenueAmountChange
907 *
908 * @param subFundTotalRevenueAmountChange The subFundTotalRevenueAmountChange to set.
909 */
910 public void setSubFundTotalRevenueAmountChange(Integer subFundTotalRevenueAmountChange) {
911 this.subFundTotalRevenueAmountChange = subFundTotalRevenueAmountChange;
912 }
913
914 /**
915 * Gets the subFundTotalRevenueBaseAmount
916 *
917 * @return Returns the subFundTotalRevenueBaseAmount.
918 */
919 public Integer getSubFundTotalRevenueBaseAmount() {
920 return subFundTotalRevenueBaseAmount;
921 }
922
923 /**
924 * Sets the subFundTotalRevenueBaseAmount
925 *
926 * @param subFundTotalRevenueBaseAmount The subFundTotalRevenueBaseAmount to set.
927 */
928 public void setSubFundTotalRevenueBaseAmount(Integer subFundTotalRevenueBaseAmount) {
929 this.subFundTotalRevenueBaseAmount = subFundTotalRevenueBaseAmount;
930 }
931
932 /**
933 * Gets the subFundTotalRevenuePercentChange
934 *
935 * @return Returns the subFundTotalRevenuePercentChange.
936 */
937 public BigDecimal getSubFundTotalRevenuePercentChange() {
938 return subFundTotalRevenuePercentChange;
939 }
940
941 /**
942 * Sets the subFundTotalRevenuePercentChange
943 *
944 * @param subFundTotalRevenuePercentChange The subFundTotalRevenuePercentChange to set.
945 */
946 public void setSubFundTotalRevenuePercentChange(BigDecimal subFundTotalRevenuePercentChange) {
947 this.subFundTotalRevenuePercentChange = subFundTotalRevenuePercentChange;
948 }
949
950 /**
951 * Gets the subFundTotalRevenueReqAmount
952 *
953 * @return Returns the subFundTotalRevenueReqAmount.
954 */
955 public Integer getSubFundTotalRevenueReqAmount() {
956 return subFundTotalRevenueReqAmount;
957 }
958
959 /**
960 * Sets the subFundTotalRevenueReqAmount
961 *
962 * @param subFundTotalRevenueReqAmount The subFundTotalRevenueReqAmount to set.
963 */
964 public void setSubFundTotalRevenueReqAmount(Integer subFundTotalRevenueReqAmount) {
965 this.subFundTotalRevenueReqAmount = subFundTotalRevenueReqAmount;
966 }
967
968 }