package wenrgise.hrms.bean; import java.io.Serializable; import wenrgise.common.bean.BaseHeaderBean; public class HrmSepApplnHdrBean extends BaseHeaderBean implements Serializable { private String applicationNo; private String dateApplied; private String initiatedBy; private String applnId; private String employeeNo; private String firstName; private String middleName; private String lastName; private String grade; private String designation; private String location; private String sepCat; private String imEffect; private String withFlag; private String reqSepDate; private String actSepDate; private String reason; private String empId; private String sepCatId; public String getApplicationNo() { return this.applicationNo; } public void setApplicationNo(String newApplicationNo) { this.applicationNo = newApplicationNo; } public String getDateApplied() { return this.dateApplied; } public void setDateApplied(String newDateApplied) { this.dateApplied = newDateApplied; } public String getInitiatedBy() { return this.initiatedBy; } public void setInitiatedBy(String newInitiatedBy) { this.initiatedBy = newInitiatedBy; } public String getApplnId() { return this.applnId; } public void setApplnId(String newApplnId) { this.applnId = newApplnId; } public String getEmployeeNo() { return this.employeeNo; } public void setEmployeeNo(String newEmployeeNo) { this.employeeNo = newEmployeeNo; } public String getFirstName() { return this.firstName; } public void setFirstName(String newFirstName) { this.firstName = newFirstName; } public String getMiddleName() { return this.middleName; } public void setMiddleName(String newMiddleName) { this.middleName = newMiddleName; } public String getLastName() { return this.lastName; } public void setLastName(String newLastName) { this.lastName = newLastName; } public String getGrade() { return this.grade; } public void setGrade(String newGrade) { this.grade = newGrade; } public String getDesignation() { return this.designation; } public void setDesignation(String newDesignation) { this.designation = newDesignation; } public String getLocation() { return this.location; } public void setLocation(String newLocation) { this.location = newLocation; } public String getSepCat() { return this.sepCat; } public void setSepCat(String newSepCat) { this.sepCat = newSepCat; } public String getImEffect() { return this.imEffect; } public void setImEffect(String newImEffect) { this.imEffect = newImEffect; } public String getWithFlag() { return this.withFlag; } public void setWithFlag(String newWithFlag) { this.withFlag = newWithFlag; } public String getReqSepDate() { return this.reqSepDate; } public void setReqSepDate(String newReqSepDate) { this.reqSepDate = newReqSepDate; } public String getActSepDate() { return this.actSepDate; } public void setActSepDate(String newActSepDate) { this.actSepDate = newActSepDate; } public String getReason() { return this.reason; } public void setReason(String newReason) { this.reason = newReason; } public String getEmpId() { return this.empId; } public void setEmpId(String newEmpId) { this.empId = newEmpId; } public String getSepCatId() { return this.sepCatId; } public void setSepCatId(String newSepCatId) { this.sepCatId = newSepCatId; } }