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 BudgetConstructionOrgLevelSummaryReport {
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        
041        private String header1;
042        private String header2;
043        private String header2a;
044        private String header3;
045        private String header31;
046        private String header4;
047        private String header40;
048        private String header5;
049        private String header6;
050    
051        // Groups
052        private String financialObjectLevelCode;
053        private String incomeExpenseCode;
054        private String financialConsolidationSortCode; 
055        // Body parts
056        private String financialObjectLevelName;
057        
058        //when the values are zero, below fields should be blank, so make them as string.
059        private BigDecimal positionCsfLeaveFteQuantity;
060        private BigDecimal csfFullTimeEmploymentQuantity;
061        private Integer financialBeginningBalanceLineAmount = new Integer(0);
062        private BigDecimal appointmentRequestedCsfFteQuantity;
063        private BigDecimal appointmentRequestedFteQuantity;
064        private Integer accountLineAnnualBalanceAmount = new Integer(0);
065        private Integer amountChange = new Integer(0);
066        private BigDecimal percentChange = BigDecimal.ZERO;
067    
068        // Total parts
069        
070        private String totalConsolidationDescription;
071        
072        private BigDecimal totalConsolidationPositionCsfLeaveFteQuantity;
073        private BigDecimal totalConsolidationPositionCsfFullTimeEmploymentQuantity;
074        private Integer totalConsolidationFinancialBeginningBalanceLineAmount;
075        private BigDecimal totalConsolidationAppointmentRequestedCsfFteQuantity;
076        private BigDecimal totalConsolidationAppointmentRequestedFteQuantity;
077        private Integer totalConsolidationAccountLineAnnualBalanceAmount;
078        private Integer totalConsolidationAmountChange;
079        private BigDecimal totalConsolidationPercentChange;
080    
081        private String grossDescription;
082        private Integer grossFinancialBeginningBalanceLineAmount;
083        private Integer grossAccountLineAnnualBalanceAmount;
084        private Integer grossAmountChange;
085        private BigDecimal grossPercentChange;
086        
087        private String typeDesc;
088        private BigDecimal typePositionCsfLeaveFteQuantity;
089        private BigDecimal typePositionCsfFullTimeEmploymentQuantity;
090        private Integer typeFinancialBeginningBalanceLineAmount;
091        private BigDecimal typeAppointmentRequestedCsfFteQuantity;
092        private BigDecimal typeAppointmentRequestedFteQuantity;
093        private Integer typeAccountLineAnnualBalanceAmount;
094        private Integer typeAmountChange;
095        private BigDecimal typePercentChange;
096        
097        private String totalSubFundGroupDesc;
098        
099        private Integer revenueFinancialBeginningBalanceLineAmount;
100        private Integer revenueAccountLineAnnualBalanceAmount;
101        private Integer revenueAmountChange;
102        private BigDecimal revenuePercentChange;
103        
104        private Integer expenditureFinancialBeginningBalanceLineAmount;
105        private Integer expenditureAccountLineAnnualBalanceAmount;
106        private Integer expenditureAmountChange;
107        private BigDecimal expenditurePercentChange;
108        
109        private Integer differenceFinancialBeginningBalanceLineAmount;
110        private Integer differenceAccountLineAnnualBalanceAmount;
111        private Integer differenceAmountChange;
112        private BigDecimal differencePercentChange;
113        
114        
115        /**
116         * Gets the amountChange
117         * 
118         * @return Returns the amountChange.
119         */
120        public Integer getAmountChange() {
121            return amountChange;
122        }
123    
124        /**
125         * Sets the amountChange
126         * 
127         * @param amountChange The amountChange to set.
128         */
129        public void setAmountChange(Integer amountChange) {
130            this.amountChange = amountChange;
131        }
132    
133        /**
134         * Gets the baseFy
135         * 
136         * @return Returns the baseFy.
137         */
138        public String getBaseFy() {
139            return baseFy;
140        }
141    
142        /**
143         * Sets the baseFy
144         * 
145         * @param baseFy The baseFy to set.
146         */
147        public void setBaseFy(String baseFy) {
148            this.baseFy = baseFy;
149        }
150    
151        /**
152         * Gets the consHdr
153         * 
154         * @return Returns the consHdr.
155         */
156        public String getConsHdr() {
157            return consHdr;
158        }
159    
160        /**
161         * Sets the consHdr
162         * 
163         * @param consHdr The consHdr to set.
164         */
165        public void setConsHdr(String consHdr) {
166            this.consHdr = consHdr;
167        }
168    
169        /**
170         * Gets the fiscalYear
171         * 
172         * @return Returns the fiscalYear.
173         */
174        public String getFiscalYear() {
175            return fiscalYear;
176        }
177    
178        /**
179         * Sets the fiscalYear
180         * 
181         * @param fiscalYear The fiscalYear to set.
182         */
183        public void setFiscalYear(String fiscalYear) {
184            this.fiscalYear = fiscalYear;
185        }
186    
187        /**
188         * Gets the fundGroupCode
189         * 
190         * @return Returns the fundGroupCode.
191         */
192        public String getFundGroupCode() {
193            return fundGroupCode;
194        }
195    
196        /**
197         * Sets the fundGroupCode
198         * 
199         * @param fundGroupCode The fundGroupCode to set.
200         */
201        public void setFundGroupCode(String fundGroupCode) {
202            this.fundGroupCode = fundGroupCode;
203        }
204    
205        /**
206         * Gets the header1
207         * 
208         * @return Returns the header1.
209         */
210        public String getHeader1() {
211            return header1;
212        }
213    
214        /**
215         * Sets the header1
216         * 
217         * @param header1 The header1 to set.
218         */
219        public void setHeader1(String header1) {
220            this.header1 = header1;
221        }
222    
223        /**
224         * Gets the header2
225         * 
226         * @return Returns the header2.
227         */
228        public String getHeader2() {
229            return header2;
230        }
231    
232        /**
233         * Sets the header2
234         * 
235         * @param header2 The header2 to set.
236         */
237        public void setHeader2(String header2) {
238            this.header2 = header2;
239        }
240    
241        /**
242         * Gets the header3
243         * 
244         * @return Returns the header3.
245         */
246        public String getHeader3() {
247            return header3;
248        }
249    
250        /**
251         * Sets the header3
252         * 
253         * @param header3 The header3 to set.
254         */
255        public void setHeader3(String header3) {
256            this.header3 = header3;
257        }
258    
259        /**
260         * Gets the header4
261         * 
262         * @return Returns the header4.
263         */
264        public String getHeader4() {
265            return header4;
266        }
267    
268        /**
269         * Sets the header4
270         * 
271         * @param header4 The header4 to set.
272         */
273        public void setHeader4(String header4) {
274            this.header4 = header4;
275        }
276    
277        /**
278         * Gets the header5
279         * 
280         * @return Returns the header5.
281         */
282        public String getHeader5() {
283            return header5;
284        }
285    
286        /**
287         * Sets the header5
288         * 
289         * @param header5 The header5 to set.
290         */
291        public void setHeader5(String header5) {
292            this.header5 = header5;
293        }
294    
295        /**
296         * Gets the header6
297         * 
298         * @return Returns the header6.
299         */
300        public String getHeader6() {
301            return header6;
302        }
303    
304        /**
305         * Sets the header6
306         * 
307         * @param header6 The header6 to set.
308         */
309        public void setHeader6(String header6) {
310            this.header6 = header6;
311        }
312    
313        /**
314         * Gets the organizationCode
315         * 
316         * @return Returns the organizationCode.
317         */
318        public String getOrganizationCode() {
319            return organizationCode;
320        }
321    
322        /**
323         * Sets the organizationCode
324         * 
325         * @param organizationCode The organizationCode to set.
326         */
327        public void setOrganizationCode(String organizationCode) {
328            this.organizationCode = organizationCode;
329        }
330    
331        /**
332         * Gets the organizationName
333         * 
334         * @return Returns the organizationName.
335         */
336        public String getOrganizationName() {
337            return organizationName;
338        }
339    
340        /**
341         * Sets the organizationName
342         * 
343         * @param organizationName The organizationName to set.
344         */
345        public void setOrganizationName(String organizationName) {
346            this.organizationName = organizationName;
347        }
348    
349        /**
350         * Gets the percentChange
351         * 
352         * @return Returns the percentChange.
353         */
354        public BigDecimal getPercentChange() {
355            return percentChange;
356        }
357    
358        /**
359         * Sets the percentChange
360         * 
361         * @param percentChange The percentChange to set.
362         */
363        public void setPercentChange(BigDecimal percentChange) {
364            this.percentChange = percentChange;
365        }
366    
367        /**
368         * Gets the reqFy
369         * 
370         * @return Returns the reqFy.
371         */
372        public String getReqFy() {
373            return reqFy;
374        }
375    
376        /**
377         * Sets the reqFy
378         * 
379         * @param reqFy The reqFy to set.
380         */
381        public void setReqFy(String reqFy) {
382            this.reqFy = reqFy;
383        }
384    
385        /**
386         * Gets the subFundGroupCode
387         * 
388         * @return Returns the subFundGroupCode.
389         */
390        public String getSubFundGroupCode() {
391            return subFundGroupCode;
392        }
393    
394        /**
395         * Sets the subFundGroupCode
396         * 
397         * @param subFundGroupCode The subFundGroupCode to set.
398         */
399        public void setSubFundGroupCode(String subFundGroupCode) {
400            this.subFundGroupCode = subFundGroupCode;
401        }
402    
403        /**
404         * Gets the subFundGroupDescription
405         * 
406         * @return Returns the subFundGroupDescription.
407         */
408        public String getSubFundGroupDescription() {
409            return subFundGroupDescription;
410        }
411    
412        /**
413         * Sets the subFundGroupDescription
414         * 
415         * @param subFundGroupDescription The subFundGroupDescription to set.
416         */
417        public void setSubFundGroupDescription(String subFundGroupDescription) {
418            this.subFundGroupDescription = subFundGroupDescription;
419        }
420    
421        /**
422         * Gets the fundGroupName
423         * 
424         * @return Returns the fundGroupName.
425         */
426        public String getFundGroupName() {
427            return fundGroupName;
428        }
429    
430        /**
431         * Sets the fundGroupName
432         * 
433         * @param fundGroupName The fundGroupName to set.
434         */
435        public void setFundGroupName(String fundGroupName) {
436            this.fundGroupName = fundGroupName;
437        }
438    
439        /**
440         * Gets the chartOfAccountDescription
441         * 
442         * @return Returns the chartOfAccountDescription.
443         */
444        public String getChartOfAccountDescription() {
445            return chartOfAccountDescription;
446        }
447    
448        /**
449         * Sets the chartOfAccountDescription
450         * 
451         * @param chartOfAccountDescription The chartOfAccountDescription to set.
452         */
453        public void setChartOfAccountDescription(String chartOfAccountDescription) {
454            this.chartOfAccountDescription = chartOfAccountDescription;
455        }
456    
457        /**
458         * Gets the chartOfAccountsCode
459         * 
460         * @return Returns the chartOfAccountsCode.
461         */
462        public String getChartOfAccountsCode() {
463            return chartOfAccountsCode;
464        }
465    
466        /**
467         * Sets the chartOfAccountsCode
468         * 
469         * @param chartOfAccountsCode The chartOfAccountsCode to set.
470         */
471        public void setChartOfAccountsCode(String chartOfAccountsCode) {
472            this.chartOfAccountsCode = chartOfAccountsCode;
473        }
474    
475        /**
476         * Gets the orgChartOfAccountDescription
477         * 
478         * @return Returns the orgChartOfAccountDescription.
479         */
480        public String getOrgChartOfAccountDescription() {
481            return orgChartOfAccountDescription;
482        }
483    
484        /**
485         * Sets the orgChartOfAccountDescription
486         * 
487         * @param orgChartOfAccountDescription The orgChartOfAccountDescription to set.
488         */
489        public void setOrgChartOfAccountDescription(String orgChartOfAccountDescription) {
490            this.orgChartOfAccountDescription = orgChartOfAccountDescription;
491        }
492    
493        /**
494         * Gets the orgChartOfAccountsCode
495         * 
496         * @return Returns the orgChartOfAccountsCode.
497         */
498        public String getOrgChartOfAccountsCode() {
499            return orgChartOfAccountsCode;
500        }
501    
502        /**
503         * Sets the orgChartOfAccountsCode
504         * 
505         * @param orgChartOfAccountsCode The orgChartOfAccountsCode to set.
506         */
507        public void setOrgChartOfAccountsCode(String orgChartOfAccountsCode) {
508            this.orgChartOfAccountsCode = orgChartOfAccountsCode;
509        }
510    
511        public Integer getAccountLineAnnualBalanceAmount() {
512            return accountLineAnnualBalanceAmount;
513        }
514    
515        public void setAccountLineAnnualBalanceAmount(Integer accountLineAnnualBalanceAmount) {
516            this.accountLineAnnualBalanceAmount = accountLineAnnualBalanceAmount;
517        }
518    
519        public BigDecimal getAppointmentRequestedCsfFteQuantity() {
520            return appointmentRequestedCsfFteQuantity;
521        }
522    
523        public void setAppointmentRequestedCsfFteQuantity(BigDecimal appointmentRequestedCsfFteQuantity) {
524            this.appointmentRequestedCsfFteQuantity = appointmentRequestedCsfFteQuantity;
525        }
526    
527        public BigDecimal getAppointmentRequestedFteQuantity() {
528            return appointmentRequestedFteQuantity;
529        }
530    
531        public void setAppointmentRequestedFteQuantity(BigDecimal appointmentRequestedFteQuantity) {
532            this.appointmentRequestedFteQuantity = appointmentRequestedFteQuantity;
533        }
534    
535        public BigDecimal getCsfFullTimeEmploymentQuantity() {
536            return csfFullTimeEmploymentQuantity;
537        }
538    
539        public void setCsfFullTimeEmploymentQuantity(BigDecimal csfFullTimeEmploymentQuantity) {
540            this.csfFullTimeEmploymentQuantity = csfFullTimeEmploymentQuantity;
541        }
542    
543        public Integer getDifferenceAccountLineAnnualBalanceAmount() {
544            return differenceAccountLineAnnualBalanceAmount;
545        }
546    
547        public void setDifferenceAccountLineAnnualBalanceAmount(Integer differenceAccountLineAnnualBalanceAmount) {
548            this.differenceAccountLineAnnualBalanceAmount = differenceAccountLineAnnualBalanceAmount;
549        }
550    
551        public Integer getDifferenceAmountChange() {
552            return differenceAmountChange;
553        }
554    
555        public void setDifferenceAmountChange(Integer differenceAmountChange) {
556            this.differenceAmountChange = differenceAmountChange;
557        }
558    
559        public Integer getDifferenceFinancialBeginningBalanceLineAmount() {
560            return differenceFinancialBeginningBalanceLineAmount;
561        }
562    
563        public void setDifferenceFinancialBeginningBalanceLineAmount(Integer differenceFinancialBeginningBalanceLineAmount) {
564            this.differenceFinancialBeginningBalanceLineAmount = differenceFinancialBeginningBalanceLineAmount;
565        }
566    
567        public BigDecimal getDifferencePercentChange() {
568            return differencePercentChange;
569        }
570    
571        public void setDifferencePercentChange(BigDecimal differencePercentChange) {
572            this.differencePercentChange = differencePercentChange;
573        }
574    
575        public Integer getExpenditureAccountLineAnnualBalanceAmount() {
576            return expenditureAccountLineAnnualBalanceAmount;
577        }
578    
579        public void setExpenditureAccountLineAnnualBalanceAmount(Integer expenditureAccountLineAnnualBalanceAmount) {
580            this.expenditureAccountLineAnnualBalanceAmount = expenditureAccountLineAnnualBalanceAmount;
581        }
582    
583        public Integer getExpenditureAmountChange() {
584            return expenditureAmountChange;
585        }
586    
587        public void setExpenditureAmountChange(Integer expenditureAmountChange) {
588            this.expenditureAmountChange = expenditureAmountChange;
589        }
590    
591        public Integer getExpenditureFinancialBeginningBalanceLineAmount() {
592            return expenditureFinancialBeginningBalanceLineAmount;
593        }
594    
595        public void setExpenditureFinancialBeginningBalanceLineAmount(Integer expenditureFinancialBeginningBalanceLineAmount) {
596            this.expenditureFinancialBeginningBalanceLineAmount = expenditureFinancialBeginningBalanceLineAmount;
597        }
598    
599        public BigDecimal getExpenditurePercentChange() {
600            return expenditurePercentChange;
601        }
602    
603        public void setExpenditurePercentChange(BigDecimal expenditurePercentChange) {
604            this.expenditurePercentChange = expenditurePercentChange;
605        }
606    
607        public Integer getFinancialBeginningBalanceLineAmount() {
608            return financialBeginningBalanceLineAmount;
609        }
610    
611        public void setFinancialBeginningBalanceLineAmount(Integer financialBeginningBalanceLineAmount) {
612            this.financialBeginningBalanceLineAmount = financialBeginningBalanceLineAmount;
613        }
614    
615        public String getFinancialConsolidationSortCode() {
616            return financialConsolidationSortCode;
617        }
618    
619        public void setFinancialConsolidationSortCode(String financialConsolidationSortCode) {
620            this.financialConsolidationSortCode = financialConsolidationSortCode;
621        }
622    
623        public String getFinancialObjectLevelCode() {
624            return financialObjectLevelCode;
625        }
626    
627        public void setFinancialObjectLevelCode(String financialObjectLevelCode) {
628            this.financialObjectLevelCode = financialObjectLevelCode;
629        }
630    
631        public String getFinancialObjectLevelName() {
632            return financialObjectLevelName;
633        }
634    
635        public void setFinancialObjectLevelName(String financialObjectLevelName) {
636            this.financialObjectLevelName = financialObjectLevelName;
637        }
638    
639        public Integer getGrossAccountLineAnnualBalanceAmount() {
640            return grossAccountLineAnnualBalanceAmount;
641        }
642    
643        public void setGrossAccountLineAnnualBalanceAmount(Integer grossAccountLineAnnualBalanceAmount) {
644            this.grossAccountLineAnnualBalanceAmount = grossAccountLineAnnualBalanceAmount;
645        }
646    
647        public Integer getGrossAmountChange() {
648            return grossAmountChange;
649        }
650    
651        public void setGrossAmountChange(Integer grossAmountChange) {
652            this.grossAmountChange = grossAmountChange;
653        }
654    
655        public String getGrossDescription() {
656            return grossDescription;
657        }
658    
659        public void setGrossDescription(String grossDescription) {
660            this.grossDescription = grossDescription;
661        }
662    
663        public Integer getGrossFinancialBeginningBalanceLineAmount() {
664            return grossFinancialBeginningBalanceLineAmount;
665        }
666    
667        public void setGrossFinancialBeginningBalanceLineAmount(Integer grossFinancialBeginningBalanceLineAmount) {
668            this.grossFinancialBeginningBalanceLineAmount = grossFinancialBeginningBalanceLineAmount;
669        }
670    
671        public BigDecimal getGrossPercentChange() {
672            return grossPercentChange;
673        }
674    
675        public void setGrossPercentChange(BigDecimal grossPercentChange) {
676            this.grossPercentChange = grossPercentChange;
677        }
678    
679        public String getHeader2a() {
680            return header2a;
681        }
682    
683        public void setHeader2a(String header2a) {
684            this.header2a = header2a;
685        }
686    
687        public String getHeader31() {
688            return header31;
689        }
690    
691        public void setHeader31(String header31) {
692            this.header31 = header31;
693        }
694    
695        public String getHeader40() {
696            return header40;
697        }
698    
699        public void setHeader40(String header40) {
700            this.header40 = header40;
701        }
702    
703        public String getIncomeExpenseCode() {
704            return incomeExpenseCode;
705        }
706    
707        public void setIncomeExpenseCode(String incomeExpenseCode) {
708            this.incomeExpenseCode = incomeExpenseCode;
709        }
710    
711        public BigDecimal getPositionCsfLeaveFteQuantity() {
712            return positionCsfLeaveFteQuantity;
713        }
714    
715        public void setPositionCsfLeaveFteQuantity(BigDecimal positionCsfLeaveFteQuantity) {
716            this.positionCsfLeaveFteQuantity = positionCsfLeaveFteQuantity;
717        }
718    
719        public Integer getRevenueAccountLineAnnualBalanceAmount() {
720            return revenueAccountLineAnnualBalanceAmount;
721        }
722    
723        public void setRevenueAccountLineAnnualBalanceAmount(Integer revenueAccountLineAnnualBalanceAmount) {
724            this.revenueAccountLineAnnualBalanceAmount = revenueAccountLineAnnualBalanceAmount;
725        }
726    
727        public Integer getRevenueAmountChange() {
728            return revenueAmountChange;
729        }
730    
731        public void setRevenueAmountChange(Integer revenueAmountChange) {
732            this.revenueAmountChange = revenueAmountChange;
733        }
734    
735        public Integer getRevenueFinancialBeginningBalanceLineAmount() {
736            return revenueFinancialBeginningBalanceLineAmount;
737        }
738    
739        public void setRevenueFinancialBeginningBalanceLineAmount(Integer revenueFinancialBeginningBalanceLineAmount) {
740            this.revenueFinancialBeginningBalanceLineAmount = revenueFinancialBeginningBalanceLineAmount;
741        }
742    
743        public BigDecimal getRevenuePercentChange() {
744            return revenuePercentChange;
745        }
746    
747        public void setRevenuePercentChange(BigDecimal revenuePercentChange) {
748            this.revenuePercentChange = revenuePercentChange;
749        }
750    
751        public Integer getTotalConsolidationAccountLineAnnualBalanceAmount() {
752            return totalConsolidationAccountLineAnnualBalanceAmount;
753        }
754    
755        public void setTotalConsolidationAccountLineAnnualBalanceAmount(Integer totalConsolidationAccountLineAnnualBalanceAmount) {
756            this.totalConsolidationAccountLineAnnualBalanceAmount = totalConsolidationAccountLineAnnualBalanceAmount;
757        }
758    
759        public Integer getTotalConsolidationAmountChange() {
760            return totalConsolidationAmountChange;
761        }
762    
763        public void setTotalConsolidationAmountChange(Integer totalConsolidationAmountChange) {
764            this.totalConsolidationAmountChange = totalConsolidationAmountChange;
765        }
766    
767        public BigDecimal getTotalConsolidationAppointmentRequestedCsfFteQuantity() {
768            return totalConsolidationAppointmentRequestedCsfFteQuantity;
769        }
770    
771        public void setTotalConsolidationAppointmentRequestedCsfFteQuantity(BigDecimal totalConsolidationAppointmentRequestedCsfFteQuantity) {
772            this.totalConsolidationAppointmentRequestedCsfFteQuantity = totalConsolidationAppointmentRequestedCsfFteQuantity;
773        }
774    
775        public BigDecimal getTotalConsolidationAppointmentRequestedFteQuantity() {
776            return totalConsolidationAppointmentRequestedFteQuantity;
777        }
778    
779        public void setTotalConsolidationAppointmentRequestedFteQuantity(BigDecimal totalConsolidationAppointmentRequestedFteQuantity) {
780            this.totalConsolidationAppointmentRequestedFteQuantity = totalConsolidationAppointmentRequestedFteQuantity;
781        }
782    
783        public String getTotalConsolidationDescription() {
784            return totalConsolidationDescription;
785        }
786    
787        public void setTotalConsolidationDescription(String totalConsolidationDescription) {
788            this.totalConsolidationDescription = totalConsolidationDescription;
789        }
790    
791        public Integer getTotalConsolidationFinancialBeginningBalanceLineAmount() {
792            return totalConsolidationFinancialBeginningBalanceLineAmount;
793        }
794    
795        public void setTotalConsolidationFinancialBeginningBalanceLineAmount(Integer totalConsolidationFinancialBeginningBalanceLineAmount) {
796            this.totalConsolidationFinancialBeginningBalanceLineAmount = totalConsolidationFinancialBeginningBalanceLineAmount;
797        }
798    
799        public BigDecimal getTotalConsolidationPercentChange() {
800            return totalConsolidationPercentChange;
801        }
802    
803        public void setTotalConsolidationPercentChange(BigDecimal totalConsolidationPercentChange) {
804            this.totalConsolidationPercentChange = totalConsolidationPercentChange;
805        }
806    
807        public BigDecimal getTotalConsolidationPositionCsfFullTimeEmploymentQuantity() {
808            return totalConsolidationPositionCsfFullTimeEmploymentQuantity;
809        }
810    
811        public void setTotalConsolidationPositionCsfFullTimeEmploymentQuantity(BigDecimal totalConsolidationPositionCsfFullTimeEmploymentQuantity) {
812            this.totalConsolidationPositionCsfFullTimeEmploymentQuantity = totalConsolidationPositionCsfFullTimeEmploymentQuantity;
813        }
814    
815        public BigDecimal getTotalConsolidationPositionCsfLeaveFteQuantity() {
816            return totalConsolidationPositionCsfLeaveFteQuantity;
817        }
818    
819        public void setTotalConsolidationPositionCsfLeaveFteQuantity(BigDecimal totalConsolidationPositionCsfLeaveFteQuantity) {
820            this.totalConsolidationPositionCsfLeaveFteQuantity = totalConsolidationPositionCsfLeaveFteQuantity;
821        }
822    
823        public String getTotalSubFundGroupDesc() {
824            return totalSubFundGroupDesc;
825        }
826    
827        public void setTotalSubFundGroupDesc(String totalSubFundGroupDesc) {
828            this.totalSubFundGroupDesc = totalSubFundGroupDesc;
829        }
830    
831        public Integer getTypeAccountLineAnnualBalanceAmount() {
832            return typeAccountLineAnnualBalanceAmount;
833        }
834    
835        public void setTypeAccountLineAnnualBalanceAmount(Integer typeAccountLineAnnualBalanceAmount) {
836            this.typeAccountLineAnnualBalanceAmount = typeAccountLineAnnualBalanceAmount;
837        }
838    
839        public Integer getTypeAmountChange() {
840            return typeAmountChange;
841        }
842    
843        public void setTypeAmountChange(Integer typeAmountChange) {
844            this.typeAmountChange = typeAmountChange;
845        }
846    
847        public BigDecimal getTypeAppointmentRequestedCsfFteQuantity() {
848            return typeAppointmentRequestedCsfFteQuantity;
849        }
850    
851        public void setTypeAppointmentRequestedCsfFteQuantity(BigDecimal typeAppointmentRequestedCsfFteQuantity) {
852            this.typeAppointmentRequestedCsfFteQuantity = typeAppointmentRequestedCsfFteQuantity;
853        }
854    
855        public BigDecimal getTypeAppointmentRequestedFteQuantity() {
856            return typeAppointmentRequestedFteQuantity;
857        }
858    
859        public void setTypeAppointmentRequestedFteQuantity(BigDecimal typeAppointmentRequestedFteQuantity) {
860            this.typeAppointmentRequestedFteQuantity = typeAppointmentRequestedFteQuantity;
861        }
862    
863        public String getTypeDesc() {
864            return typeDesc;
865        }
866    
867        public void setTypeDesc(String typeDesc) {
868            this.typeDesc = typeDesc;
869        }
870    
871        public Integer getTypeFinancialBeginningBalanceLineAmount() {
872            return typeFinancialBeginningBalanceLineAmount;
873        }
874    
875        public void setTypeFinancialBeginningBalanceLineAmount(Integer typeFinancialBeginningBalanceLineAmount) {
876            this.typeFinancialBeginningBalanceLineAmount = typeFinancialBeginningBalanceLineAmount;
877        }
878    
879        public BigDecimal getTypePercentChange() {
880            return typePercentChange;
881        }
882    
883        public void setTypePercentChange(BigDecimal typePercentChange) {
884            this.typePercentChange = typePercentChange;
885        }
886    
887        public BigDecimal getTypePositionCsfFullTimeEmploymentQuantity() {
888            return typePositionCsfFullTimeEmploymentQuantity;
889        }
890    
891        public void setTypePositionCsfFullTimeEmploymentQuantity(BigDecimal typePositionCsfFullTimeEmploymentQuantity) {
892            this.typePositionCsfFullTimeEmploymentQuantity = typePositionCsfFullTimeEmploymentQuantity;
893        }
894    
895        public BigDecimal getTypePositionCsfLeaveFteQuantity() {
896            return typePositionCsfLeaveFteQuantity;
897        }
898    
899        public void setTypePositionCsfLeaveFteQuantity(BigDecimal typePositionCsfLeaveFteQuantity) {
900            this.typePositionCsfLeaveFteQuantity = typePositionCsfLeaveFteQuantity;
901        }
902    
903       
904    }