first commit
This commit is contained in:
@@ -0,0 +1,166 @@
|
||||
package WEB-INF.classes.wenrgise.hrms.bean;
|
||||
|
||||
import java.io.Serializable;
|
||||
import wenrgise.common.bean.BaseHeaderBean;
|
||||
|
||||
public class HrmRecApplnMtnHdrBean extends BaseHeaderBean implements Serializable {
|
||||
private String applnNoId;
|
||||
|
||||
private String designationId;
|
||||
|
||||
private String referenceId;
|
||||
|
||||
private String referenceNo;
|
||||
|
||||
private String applForDesignation;
|
||||
|
||||
private String picturePath;
|
||||
|
||||
private String applicationNo;
|
||||
|
||||
private String applicationDate;
|
||||
|
||||
private String applicantFirstName;
|
||||
|
||||
private String applicantMiddleName;
|
||||
|
||||
private String applicantLastName;
|
||||
|
||||
private String entryMode;
|
||||
|
||||
private String rollNo;
|
||||
|
||||
private String employeeStatus;
|
||||
|
||||
private String nationalityCode;
|
||||
|
||||
private String applForGrade;
|
||||
|
||||
public String getApplnNoId() {
|
||||
return this.applnNoId;
|
||||
}
|
||||
|
||||
public void setApplnNoId(String newApplnNoId) {
|
||||
this.applnNoId = newApplnNoId;
|
||||
}
|
||||
|
||||
public String getDesignationId() {
|
||||
return this.designationId;
|
||||
}
|
||||
|
||||
public void setDesignationId(String newDesignationId) {
|
||||
this.designationId = newDesignationId;
|
||||
}
|
||||
|
||||
public String getReferenceId() {
|
||||
return this.referenceId;
|
||||
}
|
||||
|
||||
public void setReferenceId(String newReferenceId) {
|
||||
this.referenceId = newReferenceId;
|
||||
}
|
||||
|
||||
public String getReferenceNo() {
|
||||
return this.referenceNo;
|
||||
}
|
||||
|
||||
public void setReferenceNo(String newReferenceNo) {
|
||||
this.referenceNo = newReferenceNo;
|
||||
}
|
||||
|
||||
public String getApplForDesignation() {
|
||||
return this.applForDesignation;
|
||||
}
|
||||
|
||||
public void setApplForDesignation(String newApplForDesignation) {
|
||||
this.applForDesignation = newApplForDesignation;
|
||||
}
|
||||
|
||||
public String getPicturePath() {
|
||||
return this.picturePath;
|
||||
}
|
||||
|
||||
public void setPicturePath(String newPicturePath) {
|
||||
this.picturePath = newPicturePath;
|
||||
}
|
||||
|
||||
public String getApplicationNo() {
|
||||
return this.applicationNo;
|
||||
}
|
||||
|
||||
public void setApplicationNo(String newApplicationNo) {
|
||||
this.applicationNo = newApplicationNo;
|
||||
}
|
||||
|
||||
public String getApplicationDate() {
|
||||
return this.applicationDate;
|
||||
}
|
||||
|
||||
public void setApplicationDate(String newApplicationDate) {
|
||||
this.applicationDate = newApplicationDate;
|
||||
}
|
||||
|
||||
public String getApplicantFirstName() {
|
||||
return this.applicantFirstName;
|
||||
}
|
||||
|
||||
public void setApplicantFirstName(String newApplicantFirstName) {
|
||||
this.applicantFirstName = newApplicantFirstName;
|
||||
}
|
||||
|
||||
public String getApplicantMiddleName() {
|
||||
return this.applicantMiddleName;
|
||||
}
|
||||
|
||||
public void setApplicantMiddleName(String newApplicantMiddleName) {
|
||||
this.applicantMiddleName = newApplicantMiddleName;
|
||||
}
|
||||
|
||||
public String getApplicantLastName() {
|
||||
return this.applicantLastName;
|
||||
}
|
||||
|
||||
public void setApplicantLastName(String newApplicantLastName) {
|
||||
this.applicantLastName = newApplicantLastName;
|
||||
}
|
||||
|
||||
public String getEntryMode() {
|
||||
return this.entryMode;
|
||||
}
|
||||
|
||||
public void setEntryMode(String newEntryMode) {
|
||||
this.entryMode = newEntryMode;
|
||||
}
|
||||
|
||||
public String getRollNo() {
|
||||
return this.rollNo;
|
||||
}
|
||||
|
||||
public void setRollNo(String newRollNo) {
|
||||
this.rollNo = newRollNo;
|
||||
}
|
||||
|
||||
public String getEmployeeStatus() {
|
||||
return this.employeeStatus;
|
||||
}
|
||||
|
||||
public void setEmployeeStatus(String newEmployeeStatus) {
|
||||
this.employeeStatus = newEmployeeStatus;
|
||||
}
|
||||
|
||||
public String getNationalityCode() {
|
||||
return this.nationalityCode;
|
||||
}
|
||||
|
||||
public void setNationalityCode(String newNationalityCode) {
|
||||
this.nationalityCode = newNationalityCode;
|
||||
}
|
||||
|
||||
public String getApplForGrade() {
|
||||
return this.applForGrade;
|
||||
}
|
||||
|
||||
public void setApplForGrade(String newApplForGrade) {
|
||||
this.applForGrade = newApplForGrade;
|
||||
}
|
||||
}
|
Reference in New Issue
Block a user