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
019 /**
020 * Budget Construction Organization Account Funding Detail Report Business Object.
021 */
022 public class BudgetConstructionOrgList2PLGReport {
023
024 //Header parts
025 private String fiscalYear;
026 private String orgChartOfAccountsCode;
027 private String orgChartOfAccountDescription;
028 private String chartOfAccountsCode;
029 private String chartOfAccountDescription;
030 private String organizationCode;
031 private String organizationName;
032 private String reqFy;
033
034 //Body parts
035 private String accountNumber;
036 private String subAccountNumber;
037 private String accountSubAccountName;
038 private Integer reqAmount;
039
040
041
042
043 public String getAccountNumber() {
044 return accountNumber;
045 }
046 public void setAccountNumber(String accountNumber) {
047 this.accountNumber = accountNumber;
048 }
049 public String getAccountSubAccountName() {
050 return accountSubAccountName;
051 }
052 public void setAccountSubAccountName(String accountSubAccountName) {
053 this.accountSubAccountName = accountSubAccountName;
054 }
055 public String getChartOfAccountDescription() {
056 return chartOfAccountDescription;
057 }
058 public void setChartOfAccountDescription(String chartOfAccountDescription) {
059 this.chartOfAccountDescription = chartOfAccountDescription;
060 }
061 public String getChartOfAccountsCode() {
062 return chartOfAccountsCode;
063 }
064 public void setChartOfAccountsCode(String chartOfAccountsCode) {
065 this.chartOfAccountsCode = chartOfAccountsCode;
066 }
067 public String getFiscalYear() {
068 return fiscalYear;
069 }
070 public void setFiscalYear(String fiscalYear) {
071 this.fiscalYear = fiscalYear;
072 }
073 public String getOrganizationCode() {
074 return organizationCode;
075 }
076 public void setOrganizationCode(String organizationCode) {
077 this.organizationCode = organizationCode;
078 }
079 public String getOrganizationName() {
080 return organizationName;
081 }
082 public void setOrganizationName(String organizationName) {
083 this.organizationName = organizationName;
084 }
085 public String getOrgChartOfAccountDescription() {
086 return orgChartOfAccountDescription;
087 }
088 public void setOrgChartOfAccountDescription(String orgChartOfAccountDescription) {
089 this.orgChartOfAccountDescription = orgChartOfAccountDescription;
090 }
091 public String getOrgChartOfAccountsCode() {
092 return orgChartOfAccountsCode;
093 }
094 public void setOrgChartOfAccountsCode(String orgChartOfAccountsCode) {
095 this.orgChartOfAccountsCode = orgChartOfAccountsCode;
096 }
097 public Integer getReqAmount() {
098 return reqAmount;
099 }
100 public void setReqAmount(Integer reqAmount) {
101 this.reqAmount = reqAmount;
102 }
103 public String getReqFy() {
104 return reqFy;
105 }
106 public void setReqFy(String reqFy) {
107 this.reqFy = reqFy;
108 }
109 public String getSubAccountNumber() {
110 return subAccountNumber;
111 }
112 public void setSubAccountNumber(String subAccountNumber) {
113 this.subAccountNumber = subAccountNumber;
114 }
115
116
117 }