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 BudgetConstructionOrgSalarySummaryReportTotal {
024
025 //person
026 private String personPositionNumber;
027 private String personFiscalYearTag;
028 private Integer personCsfNormalMonths;
029 private Integer personCsfPayMonths;
030 private Integer personCsfAmount;
031 private BigDecimal personCsfPercent;
032 private Integer personSalaryNormalMonths;
033 private Integer personSalaryAmount;
034 private BigDecimal personSalaryPercent;
035 private BigDecimal personSalaryFte;
036 private String personTiFlag;
037 private Integer personAmountChange;
038 private BigDecimal personPercentChange;
039
040 //org
041 private BigDecimal newFte;
042 private Integer newTotalAmount;
043 private Integer newAverageAmount;
044 private BigDecimal conFte;
045 private Integer conTotalBaseAmount;
046 private Integer conTotalRequestAmount;
047 private Integer conAverageBaseAmount;
048 private Integer conAverageRequestAmount;
049 private Integer conAveragechange;
050 private BigDecimal conPercentChange;
051
052 private BudgetConstructionSalarySocialSecurityNumber budgetConstructionSalarySocialSecurityNumber;
053
054
055
056 public BudgetConstructionSalarySocialSecurityNumber getBudgetConstructionSalarySocialSecurityNumber() {
057 return budgetConstructionSalarySocialSecurityNumber;
058 }
059
060 public void setBudgetConstructionSalarySocialSecurityNumber(BudgetConstructionSalarySocialSecurityNumber budgetConstructionSalarySocialSecurityNumber) {
061 this.budgetConstructionSalarySocialSecurityNumber = budgetConstructionSalarySocialSecurityNumber;
062 }
063
064 public Integer getConAverageBaseAmount() {
065 return conAverageBaseAmount;
066 }
067
068 public void setConAverageBaseAmount(Integer conAverageBaseAmount) {
069 this.conAverageBaseAmount = conAverageBaseAmount;
070 }
071
072 public Integer getConAveragechange() {
073 return conAveragechange;
074 }
075
076 public void setConAveragechange(Integer conAveragechange) {
077 this.conAveragechange = conAveragechange;
078 }
079
080 public Integer getConAverageRequestAmount() {
081 return conAverageRequestAmount;
082 }
083
084 public void setConAverageRequestAmount(Integer conAverageRequestAmount) {
085 this.conAverageRequestAmount = conAverageRequestAmount;
086 }
087
088 public BigDecimal getConFte() {
089 return conFte;
090 }
091
092 public void setConFte(BigDecimal conFte) {
093 this.conFte = conFte;
094 }
095
096 public BigDecimal getConPercentChange() {
097 return conPercentChange;
098 }
099
100 public void setConPercentChange(BigDecimal conPercentChange) {
101 this.conPercentChange = conPercentChange;
102 }
103
104 public Integer getConTotalBaseAmount() {
105 return conTotalBaseAmount;
106 }
107
108 public void setConTotalBaseAmount(Integer conTotalBaseAmount) {
109 this.conTotalBaseAmount = conTotalBaseAmount;
110 }
111
112 public Integer getConTotalRequestAmount() {
113 return conTotalRequestAmount;
114 }
115
116 public void setConTotalRequestAmount(Integer conTotalRequestAmount) {
117 this.conTotalRequestAmount = conTotalRequestAmount;
118 }
119
120 public Integer getNewAverageAmount() {
121 return newAverageAmount;
122 }
123
124 public void setNewAverageAmount(Integer newAverageAmount) {
125 this.newAverageAmount = newAverageAmount;
126 }
127
128 public BigDecimal getNewFte() {
129 return newFte;
130 }
131
132 public void setNewFte(BigDecimal newFte) {
133 this.newFte = newFte;
134 }
135
136 public Integer getNewTotalAmount() {
137 return newTotalAmount;
138 }
139
140 public void setNewTotalAmount(Integer newTotalAmount) {
141 this.newTotalAmount = newTotalAmount;
142 }
143
144 public Integer getPersonAmountChange() {
145 return personAmountChange;
146 }
147
148 public void setPersonAmountChange(Integer personAmountChange) {
149 this.personAmountChange = personAmountChange;
150 }
151
152 public Integer getPersonCsfAmount() {
153 return personCsfAmount;
154 }
155
156 public void setPersonCsfAmount(Integer personCsfAmount) {
157 this.personCsfAmount = personCsfAmount;
158 }
159
160 public Integer getPersonCsfNormalMonths() {
161 return personCsfNormalMonths;
162 }
163
164 public void setPersonCsfNormalMonths(Integer personCsfNormalMonths) {
165 this.personCsfNormalMonths = personCsfNormalMonths;
166 }
167
168 public Integer getPersonCsfPayMonths() {
169 return personCsfPayMonths;
170 }
171
172 public void setPersonCsfPayMonths(Integer personCsfPayMonths) {
173 this.personCsfPayMonths = personCsfPayMonths;
174 }
175
176 public BigDecimal getPersonCsfPercent() {
177 return personCsfPercent;
178 }
179
180 public void setPersonCsfPercent(BigDecimal personCsfPercent) {
181 this.personCsfPercent = personCsfPercent;
182 }
183
184 public String getPersonFiscalYearTag() {
185 return personFiscalYearTag;
186 }
187
188 public void setPersonFiscalYearTag(String personFiscalYearTag) {
189 this.personFiscalYearTag = personFiscalYearTag;
190 }
191
192 public BigDecimal getPersonPercentChange() {
193 return personPercentChange;
194 }
195
196 public void setPersonPercentChange(BigDecimal personPercentChange) {
197 this.personPercentChange = personPercentChange;
198 }
199
200 public String getPersonPositionNumber() {
201 return personPositionNumber;
202 }
203
204 public void setPersonPositionNumber(String personPositionNumber) {
205 this.personPositionNumber = personPositionNumber;
206 }
207
208 public Integer getPersonSalaryAmount() {
209 return personSalaryAmount;
210 }
211
212 public void setPersonSalaryAmount(Integer personSalaryAmount) {
213 this.personSalaryAmount = personSalaryAmount;
214 }
215
216 public BigDecimal getPersonSalaryFte() {
217 return personSalaryFte;
218 }
219
220 public void setPersonSalaryFte(BigDecimal personSalaryFte) {
221 this.personSalaryFte = personSalaryFte;
222 }
223
224 public Integer getPersonSalaryNormalMonths() {
225 return personSalaryNormalMonths;
226 }
227
228 public void setPersonSalaryNormalMonths(Integer personSalaryNormalMonths) {
229 this.personSalaryNormalMonths = personSalaryNormalMonths;
230 }
231
232 public BigDecimal getPersonSalaryPercent() {
233 return personSalaryPercent;
234 }
235
236 public void setPersonSalaryPercent(BigDecimal personSalaryPercent) {
237 this.personSalaryPercent = personSalaryPercent;
238 }
239
240 public String getPersonTiFlag() {
241 return personTiFlag;
242 }
243
244 public void setPersonTiFlag(String personTiFlag) {
245 this.personTiFlag = personTiFlag;
246 }
247
248 }