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.sql.Date;
23 import java.util.LinkedHashMap;
24
25 import org.kuali.rice.krad.bo.PersistableBusinessObjectBase;
26
27
28
29
30 public class BudgetConstructionActiveJobMove extends PersistableBusinessObjectBase {
31
32 private String principalId;
33 private String emplid;
34 private Integer employeeRecord;
35 private Date effectiveDate;
36 private Integer effectiveSequence;
37 private String positionNumber;
38 private String employeeStatus;
39 private String departmentIdentifier;
40
41
42
43
44 public BudgetConstructionActiveJobMove() {
45
46 }
47
48
49
50
51
52
53 public String getPrincipalId() {
54 return principalId;
55 }
56
57
58
59
60
61
62 public void setPrincipalId(String principalId) {
63 this.principalId = principalId;
64 }
65
66
67
68
69
70
71
72 public String getEmplid() {
73 return emplid;
74 }
75
76
77
78
79
80
81 public void setEmplid(String emplid) {
82 this.emplid = emplid;
83 }
84
85
86
87
88
89
90
91 public Integer getEmployeeRecord() {
92 return employeeRecord;
93 }
94
95
96
97
98
99
100 public void setEmployeeRecord(Integer employeeRecord) {
101 this.employeeRecord = employeeRecord;
102 }
103
104
105
106
107
108
109
110 public Date getEffectiveDate() {
111 return effectiveDate;
112 }
113
114
115
116
117
118
119 public void setEffectiveDate(Date effectiveDate) {
120 this.effectiveDate = effectiveDate;
121 }
122
123
124
125
126
127
128
129 public Integer getEffectiveSequence() {
130 return effectiveSequence;
131 }
132
133
134
135
136
137
138 public void setEffectiveSequence(Integer effectiveSequence) {
139 this.effectiveSequence = effectiveSequence;
140 }
141
142
143
144
145
146
147
148 public String getPositionNumber() {
149 return positionNumber;
150 }
151
152
153
154
155
156
157 public void setPositionNumber(String positionNumber) {
158 this.positionNumber = positionNumber;
159 }
160
161
162
163
164
165
166
167 public String getEmployeeStatus() {
168 return employeeStatus;
169 }
170
171
172
173
174
175
176 public void setEmployeeStatus(String employeeStatus) {
177 this.employeeStatus = employeeStatus;
178 }
179
180
181
182
183
184
185
186 public String getDepartmentIdentifier() {
187 return departmentIdentifier;
188 }
189
190
191
192
193
194
195 public void setDepartmentIdentifier(String departmentIdentifier) {
196 this.departmentIdentifier = departmentIdentifier;
197 }
198
199
200
201
202
203 protected LinkedHashMap toStringMapper_RICE20_REFACTORME() {
204 LinkedHashMap m = new LinkedHashMap();
205 m.put("principalId", this.principalId);
206 m.put("emplid", this.emplid);
207 if (this.employeeRecord != null) {
208 m.put("employeeRecord", this.employeeRecord.toString());
209 }
210 if (this.effectiveDate != null) {
211 m.put("effectiveDate", this.effectiveDate.toString());
212 }
213 if (this.effectiveSequence != null) {
214 m.put("effectiveSequence", this.effectiveSequence.toString());
215 }
216 return m;
217 }
218 }
219