1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20 package org.kuali.kfs.module.bc.businessobject;
21
22 import java.math.BigDecimal;
23 import java.util.LinkedHashMap;
24
25 import org.kuali.rice.krad.bo.PersistableBusinessObjectBase;
26
27
28
29
30 public class BudgetConstructionPayRateHolding extends PersistableBusinessObjectBase {
31
32 private String emplid;
33 private String positionNumber;
34 private String name;
35 private String setidSalary;
36 private String salaryAdministrationPlan;
37 private String grade;
38 private String unionCode;
39 private BigDecimal appointmentRequestedPayRate;
40 private String principalId;
41
42
43
44
45 public BudgetConstructionPayRateHolding() {
46
47 }
48
49
50
51
52
53
54 public String getEmplid() {
55 return emplid;
56 }
57
58
59
60
61
62
63 public void setEmplid(String emplid) {
64 this.emplid = emplid;
65 }
66
67
68
69
70
71
72
73 public String getPositionNumber() {
74 return positionNumber;
75 }
76
77
78
79
80
81
82 public void setPositionNumber(String positionNumber) {
83 this.positionNumber = positionNumber;
84 }
85
86
87
88
89
90
91
92 public String getName() {
93 return name;
94 }
95
96
97
98
99
100
101 public void setName(String name) {
102 this.name = name;
103 }
104
105
106
107
108
109
110
111 public String getSetidSalary() {
112 return setidSalary;
113 }
114
115
116
117
118
119
120 public void setSetidSalary(String setidSalary) {
121 this.setidSalary = setidSalary;
122 }
123
124
125
126
127
128
129
130 public String getSalaryAdministrationPlan() {
131 return salaryAdministrationPlan;
132 }
133
134
135
136
137
138
139 public void setSalaryAdministrationPlan(String salaryAdministrationPlan) {
140 this.salaryAdministrationPlan = salaryAdministrationPlan;
141 }
142
143
144
145
146
147
148
149 public String getGrade() {
150 return grade;
151 }
152
153
154
155
156
157
158 public void setGrade(String grade) {
159 this.grade = grade;
160 }
161
162
163
164
165
166
167
168 public String getUnionCode() {
169 return unionCode;
170 }
171
172
173
174
175
176
177 public void setUnionCode(String unionCode) {
178 this.unionCode = unionCode;
179 }
180
181
182
183
184
185
186
187 public BigDecimal getAppointmentRequestedPayRate() {
188 return appointmentRequestedPayRate;
189 }
190
191
192
193
194
195
196 public void setAppointmentRequestedPayRate(BigDecimal appointmentRequestedPayRate) {
197 this.appointmentRequestedPayRate = appointmentRequestedPayRate;
198 }
199
200
201
202
203
204 protected LinkedHashMap toStringMapper_RICE20_REFACTORME() {
205 LinkedHashMap m = new LinkedHashMap();
206 m.put("emplid", this.emplid);
207 m.put("positionNumber", this.positionNumber);
208 return m;
209 }
210
211 public String getPrincipalId() {
212 return principalId;
213 }
214
215 public void setPrincipalId(String principalId) {
216 this.principalId = principalId;
217 }
218 }
219