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 Funding Detail Report Business Object.
022     */
023    public class BudgetConstructionOrgReasonStatisticsReport {
024    
025        // Header parts
026        private String fiscalYear;
027        private String chartOfAccountsCode;
028        private String chartOfAccountDescription;
029        private String organizationCode;
030        private String organizationName;
031        private String consHdr;
032        private String objectCodes;
033        private String thresholdOrReason;
034        
035        // Body parts
036        private BigDecimal initialRequestedFteQuantity;
037        private Integer totalInitialRequestedAmount;
038        private Integer totalAverageAmount = new Integer(0);
039        private BigDecimal appointmentRequestedFteQuantity;
040        private Integer totalCsfAmount;
041        private Integer totalAppointmentRequestedAmount;
042        private BigDecimal averageCsfAmount;
043        private BigDecimal averageAppointmentRequestedAmount;
044        private BigDecimal averageChange;
045        private BigDecimal percentChange;
046        
047        
048        
049        public BigDecimal getAppointmentRequestedFteQuantity() {
050            return appointmentRequestedFteQuantity;
051        }
052        public void setAppointmentRequestedFteQuantity(BigDecimal appointmentRequestedFteQuantity) {
053            this.appointmentRequestedFteQuantity = appointmentRequestedFteQuantity;
054        }
055        public BigDecimal getAverageAppointmentRequestedAmount() {
056            return averageAppointmentRequestedAmount;
057        }
058        public void setAverageAppointmentRequestedAmount(BigDecimal averageAppointmentRequestedAmount) {
059            this.averageAppointmentRequestedAmount = averageAppointmentRequestedAmount;
060        }
061        public BigDecimal getAverageChange() {
062            return averageChange;
063        }
064        public void setAverageChange(BigDecimal averageChange) {
065            this.averageChange = averageChange;
066        }
067        public BigDecimal getAverageCsfAmount() {
068            return averageCsfAmount;
069        }
070        public void setAverageCsfAmount(BigDecimal averageCsfAmount) {
071            this.averageCsfAmount = averageCsfAmount;
072        }
073        public String getChartOfAccountDescription() {
074            return chartOfAccountDescription;
075        }
076        public void setChartOfAccountDescription(String chartOfAccountDescription) {
077            this.chartOfAccountDescription = chartOfAccountDescription;
078        }
079        public String getChartOfAccountsCode() {
080            return chartOfAccountsCode;
081        }
082        public void setChartOfAccountsCode(String chartOfAccountsCode) {
083            this.chartOfAccountsCode = chartOfAccountsCode;
084        }
085        public String getConsHdr() {
086            return consHdr;
087        }
088        public void setConsHdr(String consHdr) {
089            this.consHdr = consHdr;
090        }
091        public String getFiscalYear() {
092            return fiscalYear;
093        }
094        public void setFiscalYear(String fiscalYear) {
095            this.fiscalYear = fiscalYear;
096        }
097        public BigDecimal getInitialRequestedFteQuantity() {
098            return initialRequestedFteQuantity;
099        }
100        public void setInitialRequestedFteQuantity(BigDecimal initialRequestedFteQuantity) {
101            this.initialRequestedFteQuantity = initialRequestedFteQuantity;
102        }
103        public String getObjectCodes() {
104            return objectCodes;
105        }
106        public void setObjectCodes(String objectCodes) {
107            this.objectCodes = objectCodes;
108        }
109        public String getOrganizationCode() {
110            return organizationCode;
111        }
112        public void setOrganizationCode(String organizationCode) {
113            this.organizationCode = organizationCode;
114        }
115        public String getOrganizationName() {
116            return organizationName;
117        }
118        public void setOrganizationName(String organizationName) {
119            this.organizationName = organizationName;
120        }
121        public BigDecimal getPercentChange() {
122            return percentChange;
123        }
124        public void setPercentChange(BigDecimal percentChange) {
125            this.percentChange = percentChange;
126        }
127        public Integer getTotalAppointmentRequestedAmount() {
128            return totalAppointmentRequestedAmount;
129        }
130        public void setTotalAppointmentRequestedAmount(Integer totalAppointmentRequestedAmount) {
131            this.totalAppointmentRequestedAmount = totalAppointmentRequestedAmount;
132        }
133        public Integer getTotalAverageAmount() {
134            return totalAverageAmount;
135        }
136        public void setTotalAverageAmount(Integer totalAverageAmount) {
137            this.totalAverageAmount = totalAverageAmount;
138        }
139        public Integer getTotalCsfAmount() {
140            return totalCsfAmount;
141        }
142        public void setTotalCsfAmount(Integer totalCsfAmount) {
143            this.totalCsfAmount = totalCsfAmount;
144        }
145        public Integer getTotalInitialRequestedAmount() {
146            return totalInitialRequestedAmount;
147        }
148        public void setTotalInitialRequestedAmount(Integer totalInitialRequestedAmount) {
149            this.totalInitialRequestedAmount = totalInitialRequestedAmount;
150        }
151        public String getThresholdOrReason() {
152            return thresholdOrReason;
153        }
154        public void setThresholdOrReason(String thresholdOrReason) {
155            this.thresholdOrReason = thresholdOrReason;
156        }
157    }