1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17 package org.kuali.ole.fp.businessobject;
18
19 import java.util.LinkedHashMap;
20
21 import org.kuali.ole.sys.businessobject.FiscalYearBasedBusinessObject;
22 import org.kuali.ole.sys.businessobject.SystemOptions;
23 import org.kuali.rice.core.api.util.type.KualiDecimal;
24 import org.kuali.rice.krad.bo.PersistableBusinessObjectBase;
25
26
27
28
29 public class TravelPerDiem extends PersistableBusinessObjectBase implements FiscalYearBasedBusinessObject {
30 protected Integer universityFiscalYear;
31 protected String perDiemCountryName;
32 protected KualiDecimal perDiemRate;
33 protected String perDiemCountryText;
34
35 protected transient SystemOptions fiscalYear;
36
37
38
39
40 public TravelPerDiem() {
41
42 }
43
44
45
46
47 public Integer getUniversityFiscalYear() {
48 return universityFiscalYear;
49 }
50
51
52
53
54 public void setUniversityFiscalYear(Integer fiscalYear) {
55 this.universityFiscalYear = fiscalYear;
56 }
57
58
59
60
61 public String getPerDiemCountryName() {
62 return perDiemCountryName;
63 }
64
65
66
67
68 public void setPerDiemCountryName(String perDiemCountryName) {
69 this.perDiemCountryName = perDiemCountryName;
70 }
71
72
73
74
75 public String getPerDiemCountryText() {
76 return perDiemCountryText;
77 }
78
79
80
81
82 public void setPerDiemCountryText(String perDiemCountryText) {
83 this.perDiemCountryText = perDiemCountryText;
84 }
85
86
87
88
89 public KualiDecimal getPerDiemRate() {
90 return perDiemRate;
91 }
92
93
94
95
96 public void setPerDiemRate(KualiDecimal perDiemRate) {
97 this.perDiemRate = perDiemRate;
98 }
99
100
101
102
103
104
105 public SystemOptions getFiscalYear() {
106 return fiscalYear;
107 }
108
109
110
111
112
113
114 public void setFiscalYear(SystemOptions fiscalYear) {
115 this.fiscalYear = fiscalYear;
116 }
117
118
119
120
121 @SuppressWarnings("rawtypes")
122 protected LinkedHashMap toStringMapper() {
123 LinkedHashMap m = new LinkedHashMap();
124 m.put("perDiemCountryName", this.perDiemCountryName);
125 return m;
126 }
127 }