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 017 package org.kuali.kfs.module.bc.businessobject; 018 019 import java.math.BigDecimal; 020 021 /** 022 * 023 */ 024 public class BudgetConstructionAccountSalaryDetailReportTotal{ 025 026 // total 027 private String totalDescription; 028 private Integer totalBaseAmount; 029 private BigDecimal totalBaseFte; 030 private Integer totalRequestAmount; 031 private BigDecimal totalRequestFte; 032 private Integer totalAmountChange; 033 private BigDecimal totalPercentChange; 034 035 private PendingBudgetConstructionAppointmentFunding pendingBudgetConstructionAppointmentFunding; 036 037 038 039 /** 040 * Default constructor. 041 */ 042 public BudgetConstructionAccountSalaryDetailReportTotal() { 043 044 } 045 046 public PendingBudgetConstructionAppointmentFunding getPendingBudgetConstructionAppointmentFunding() { 047 return pendingBudgetConstructionAppointmentFunding; 048 } 049 050 public void setPendingBudgetConstructionAppointmentFunding(PendingBudgetConstructionAppointmentFunding pendingBudgetConstructionAppointmentFunding) { 051 this.pendingBudgetConstructionAppointmentFunding = pendingBudgetConstructionAppointmentFunding; 052 } 053 054 public String getTotalDescription() { 055 return totalDescription; 056 } 057 058 059 060 061 public void setTotalDescription(String totalDescription) { 062 this.totalDescription = totalDescription; 063 } 064 065 066 067 068 public Integer getTotalBaseAmount() { 069 return totalBaseAmount; 070 } 071 072 073 074 075 public void setTotalBaseAmount(Integer totalBaseAmount) { 076 this.totalBaseAmount = totalBaseAmount; 077 } 078 079 080 081 082 public BigDecimal getTotalBaseFte() { 083 return totalBaseFte; 084 } 085 086 087 088 089 public void setTotalBaseFte(BigDecimal totalBaseFte) { 090 this.totalBaseFte = totalBaseFte; 091 } 092 093 094 095 096 public Integer getTotalRequestAmount() { 097 return totalRequestAmount; 098 } 099 100 101 102 103 public void setTotalRequestAmount(Integer totalRequestAmount) { 104 this.totalRequestAmount = totalRequestAmount; 105 } 106 107 108 109 110 public BigDecimal getTotalRequestFte() { 111 return totalRequestFte; 112 } 113 114 115 116 117 public void setTotalRequestFte(BigDecimal totalRequestFte) { 118 this.totalRequestFte = totalRequestFte; 119 } 120 121 122 123 124 public Integer getTotalAmountChange() { 125 return totalAmountChange; 126 } 127 128 129 130 131 public void setTotalAmountChange(Integer totalAmountChange) { 132 this.totalAmountChange = totalAmountChange; 133 } 134 135 136 137 138 public BigDecimal getTotalPercentChange() { 139 return totalPercentChange; 140 } 141 142 143 144 145 public void setTotalPercentChange(BigDecimal totalPercentChange) { 146 this.totalPercentChange = totalPercentChange; 147 } 148 }