1 | |
|
2 | |
|
3 | |
|
4 | |
|
5 | |
|
6 | |
|
7 | |
|
8 | |
|
9 | |
|
10 | |
|
11 | |
|
12 | |
|
13 | |
|
14 | |
|
15 | |
|
16 | |
package org.kuali.rice.kim.bo.ui; |
17 | |
|
18 | |
import org.hibernate.annotations.*; |
19 | |
import org.hibernate.annotations.Parameter; |
20 | |
import org.kuali.rice.core.util.type.KualiDecimal; |
21 | |
import org.kuali.rice.kim.bo.reference.EmploymentStatus; |
22 | |
import org.kuali.rice.kim.bo.reference.EmploymentType; |
23 | |
import org.kuali.rice.kim.bo.reference.impl.EmploymentStatusImpl; |
24 | |
import org.kuali.rice.kim.bo.reference.impl.EmploymentTypeImpl; |
25 | |
|
26 | |
import javax.persistence.*; |
27 | |
import javax.persistence.Entity; |
28 | |
import javax.persistence.Table; |
29 | |
|
30 | |
|
31 | |
|
32 | |
|
33 | |
|
34 | |
|
35 | |
|
36 | |
@IdClass(PersonDocumentEmploymentInfoId.class) |
37 | |
@Entity |
38 | |
@Table(name = "KRIM_PND_EMP_INFO_MT") |
39 | |
public class PersonDocumentEmploymentInfo extends KimDocumentBoActivatableEditableBase { |
40 | |
@Id |
41 | |
@GeneratedValue(generator="KRIM_ENTITY_EMP_ID_S") |
42 | |
@GenericGenerator(name="KRIM_ENTITY_EMP_ID_S",strategy="org.kuali.rice.core.jpa.spring.RiceNumericStringSequenceStyleGenerator",parameters={ |
43 | |
@Parameter(name="sequence_name",value="KRIM_ENTITY_EMP_ID_S"), |
44 | |
@Parameter(name="value_column",value="id") |
45 | |
}) |
46 | |
@Column(name = "ENTITY_EMP_ID") |
47 | |
protected String entityEmploymentId; |
48 | |
|
49 | |
@Column(name = "ENTITY_AFLTN_ID") |
50 | |
protected String entityAffiliationId; |
51 | |
|
52 | |
@Column(name = "EMP_STAT_CD") |
53 | |
protected String employmentStatusCode; |
54 | |
|
55 | |
@Column(name = "EMP_TYP_CD") |
56 | |
protected String employmentTypeCode; |
57 | |
|
58 | |
@Column(name = "PRMRY_DEPT_CD") |
59 | |
protected String primaryDepartmentCode; |
60 | |
|
61 | |
@Column(name = "BASE_SLRY_AMT") |
62 | |
protected KualiDecimal baseSalaryAmount; |
63 | |
@Column(name = "EMP_ID") |
64 | |
protected String employeeId; |
65 | |
|
66 | |
@Column(name = "EMP_REC_ID") |
67 | |
protected String employmentRecordId; |
68 | |
|
69 | |
@Type(type="yes_no") |
70 | |
@Column(name="PRMRY_IND") |
71 | |
protected boolean primary; |
72 | |
|
73 | |
@ManyToOne(targetEntity=EmploymentTypeImpl.class, fetch = FetchType.EAGER, cascade = {}) |
74 | |
@JoinColumn(name = "EMP_TYP_CD", insertable = false, updatable = false) |
75 | |
protected EmploymentType employmentType; |
76 | |
|
77 | |
@ManyToOne(targetEntity=EmploymentStatusImpl.class, fetch = FetchType.EAGER, cascade = {}) |
78 | |
@Fetch(value = FetchMode.SELECT) |
79 | |
@JoinColumn(name = "EMP_STAT_CD", insertable = false, updatable = false) |
80 | |
protected EmploymentStatus employmentStatus; |
81 | |
@Transient |
82 | |
protected PersonDocumentAffiliation affiliation; |
83 | |
|
84 | 0 | public PersonDocumentEmploymentInfo() { |
85 | 0 | this.active = true; |
86 | 0 | } |
87 | |
|
88 | |
|
89 | |
|
90 | |
|
91 | |
public KualiDecimal getBaseSalaryAmount() { |
92 | 0 | return baseSalaryAmount; |
93 | |
} |
94 | |
|
95 | |
|
96 | |
|
97 | |
|
98 | |
public String getEmploymentStatusCode() { |
99 | 0 | return employmentStatusCode; |
100 | |
} |
101 | |
|
102 | |
|
103 | |
|
104 | |
|
105 | |
public String getEmploymentTypeCode() { |
106 | 0 | return employmentTypeCode; |
107 | |
} |
108 | |
|
109 | |
|
110 | |
|
111 | |
|
112 | |
public String getEntityAffiliationId() { |
113 | 0 | return entityAffiliationId; |
114 | |
} |
115 | |
|
116 | |
|
117 | |
|
118 | |
|
119 | |
public String getEntityEmploymentId() { |
120 | 0 | return entityEmploymentId; |
121 | |
} |
122 | |
|
123 | |
|
124 | |
|
125 | |
|
126 | |
public boolean isPrimary() { |
127 | 0 | return primary; |
128 | |
} |
129 | |
|
130 | |
|
131 | |
|
132 | |
|
133 | |
public void setEntityAffiliationId(String entityAffiliationId) { |
134 | 0 | this.entityAffiliationId = entityAffiliationId; |
135 | 0 | } |
136 | |
|
137 | |
|
138 | |
|
139 | |
|
140 | |
public void setBaseSalaryAmount(KualiDecimal baseSalaryAmount) { |
141 | 0 | this.baseSalaryAmount = baseSalaryAmount; |
142 | 0 | } |
143 | |
|
144 | |
|
145 | |
|
146 | |
|
147 | |
public void setEmploymentStatusCode(String employmentStatusCode) { |
148 | 0 | this.employmentStatusCode = employmentStatusCode; |
149 | 0 | } |
150 | |
|
151 | |
|
152 | |
|
153 | |
|
154 | |
public void setEmploymentTypeCode(String employmentTypeCode) { |
155 | 0 | this.employmentTypeCode = employmentTypeCode; |
156 | 0 | } |
157 | |
|
158 | |
|
159 | |
|
160 | |
|
161 | |
public void setPrimary(boolean primary) { |
162 | 0 | this.primary = primary; |
163 | 0 | } |
164 | |
|
165 | |
public void setEntityEmploymentId(String entityEmploymentId) { |
166 | 0 | this.entityEmploymentId = entityEmploymentId; |
167 | 0 | } |
168 | |
|
169 | |
public EmploymentType getEmploymentType() { |
170 | 0 | return this.employmentType; |
171 | |
} |
172 | |
|
173 | |
public void setEmploymentType(EmploymentType employmentType) { |
174 | 0 | this.employmentType = employmentType; |
175 | 0 | } |
176 | |
|
177 | |
public EmploymentStatus getEmploymentStatus() { |
178 | 0 | return this.employmentStatus; |
179 | |
} |
180 | |
|
181 | |
public void setEmploymentStatus(EmploymentStatus employmentStatus) { |
182 | 0 | this.employmentStatus = employmentStatus; |
183 | 0 | } |
184 | |
|
185 | |
public String getPrimaryDepartmentCode() { |
186 | 0 | return this.primaryDepartmentCode; |
187 | |
} |
188 | |
|
189 | |
public void setPrimaryDepartmentCode(String primaryDepartmentCode) { |
190 | 0 | this.primaryDepartmentCode = primaryDepartmentCode; |
191 | 0 | } |
192 | |
|
193 | |
public PersonDocumentAffiliation getAffiliation() { |
194 | 0 | return this.affiliation; |
195 | |
} |
196 | |
|
197 | |
public void setAffiliation(PersonDocumentAffiliation affiliation) { |
198 | 0 | this.affiliation = affiliation; |
199 | 0 | } |
200 | |
|
201 | |
public String getEmployeeId() { |
202 | 0 | return this.employeeId; |
203 | |
} |
204 | |
|
205 | |
public void setEmployeeId(String employeeId) { |
206 | 0 | this.employeeId = employeeId; |
207 | 0 | } |
208 | |
|
209 | |
public String getEmploymentRecordId() { |
210 | 0 | return this.employmentRecordId; |
211 | |
} |
212 | |
|
213 | |
public void setEmploymentRecordId(String employmentRecordId) { |
214 | 0 | this.employmentRecordId = employmentRecordId; |
215 | 0 | } |
216 | |
|
217 | |
} |