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