|
@@ -237,6 +237,30 @@ public class EmployeeInfo {
|
|
|
return this.entryDate;
|
|
|
}
|
|
|
|
|
|
+ public boolean isInterviewed() {
|
|
|
+ return isInterviewed;
|
|
|
+ }
|
|
|
+
|
|
|
+ public void setInterviewed(boolean isInterviewed) {
|
|
|
+ this.isInterviewed = isInterviewed;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Integer getOrganId() {
|
|
|
+ return organId;
|
|
|
+ }
|
|
|
+
|
|
|
+ public void setOrganId(Integer organId) {
|
|
|
+ this.organId = organId;
|
|
|
+ }
|
|
|
+
|
|
|
+ public boolean isProbationPeriod() {
|
|
|
+ return isProbationPeriod;
|
|
|
+ }
|
|
|
+
|
|
|
+ public void setProbationPeriod(boolean isProbationPeriod) {
|
|
|
+ this.isProbationPeriod = isProbationPeriod;
|
|
|
+ }
|
|
|
+
|
|
|
public void setPosition(JobTypeEnum position) {
|
|
|
this.position = position;
|
|
|
}
|