001 /*
002 * Copyright 2011 The Kuali Foundation
003 *
004 * Licensed under the Educational Community License, Version 1.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/ecl1.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 edu.sampleu.travel.dto;
017
018 import java.io.Serializable;
019 import java.util.Date;
020
021 import org.kuali.rice.core.util.type.KualiPercent;
022
023 /**
024 *
025 * @author Kuali Rice Team (rice.collab@kuali.org)
026 */
027 public class TravelAccountInfo implements Serializable {
028
029 private String number;
030 private String subAccount;
031 private String name;
032 private String subAccountName;
033 private KualiPercent subsidizedPercent;
034 private Date createDate;
035 private Long foId;
036 private String objectId;
037 private Long versionNumber;
038
039
040 public String getNumber() {
041 return this.number;
042 }
043
044 public void setNumber(String number) {
045 this.number = number;
046 }
047
048 public String getSubAccount() {
049 return this.subAccount;
050 }
051
052 public void setSubAccount(String subAccount) {
053 this.subAccount = subAccount;
054 }
055
056 public String getName() {
057 return this.name;
058 }
059
060 public void setName(String name) {
061 this.name = name;
062 }
063
064 public String getSubAccountName() {
065 return this.subAccountName;
066 }
067
068 public void setSubAccountName(String subAccountName) {
069 this.subAccountName = subAccountName;
070 }
071
072 public KualiPercent getSubsidizedPercent() {
073 return this.subsidizedPercent;
074 }
075
076 public void setSubsidizedPercent(KualiPercent subsidizedPercent) {
077 this.subsidizedPercent = subsidizedPercent;
078 }
079
080 public Date getCreateDate() {
081 return this.createDate;
082 }
083
084 public void setCreateDate(Date createDate) {
085 this.createDate = createDate;
086 }
087
088 public Long getFoId() {
089 return this.foId;
090 }
091
092 public void setFoId(Long foId) {
093 this.foId = foId;
094 }
095
096 public String getObjectId() {
097 return this.objectId;
098 }
099
100 public void setObjectId(String objectId) {
101 this.objectId = objectId;
102 }
103
104 public Long getVersionNumber() {
105 return this.versionNumber;
106 }
107
108 public void setVersionNumber(Long versionNumber) {
109 this.versionNumber = versionNumber;
110 }
111
112 }