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