107 lines
2.2 KiB
Java
107 lines
2.2 KiB
Java
package wenrgise.hrms.bean;
|
|
|
|
import java.io.Serializable;
|
|
import wenrgise.common.bean.BaseHeaderBean;
|
|
|
|
public class HrmTrngFacBean extends BaseHeaderBean implements Serializable {
|
|
private String facultyType;
|
|
|
|
private String employeeNo;
|
|
|
|
private String baseInstitution;
|
|
|
|
private String firstName;
|
|
|
|
private String middleName;
|
|
|
|
private String lastName;
|
|
|
|
private String experience;
|
|
|
|
private String institutionName;
|
|
|
|
private String trgFacMstEmpId;
|
|
|
|
private String trgFacMstInstCode;
|
|
|
|
public String getFacultyType() {
|
|
return this.facultyType;
|
|
}
|
|
|
|
public void setFacultyType(String newFacultyType) {
|
|
this.facultyType = newFacultyType;
|
|
}
|
|
|
|
public String getEmployeeNo() {
|
|
return this.employeeNo;
|
|
}
|
|
|
|
public void setEmployeeNo(String newEmployeeNo) {
|
|
this.employeeNo = newEmployeeNo;
|
|
}
|
|
|
|
public String getBaseInstitution() {
|
|
return this.baseInstitution;
|
|
}
|
|
|
|
public void setBaseInstitution(String newBaseInstitution) {
|
|
this.baseInstitution = newBaseInstitution;
|
|
}
|
|
|
|
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 getExperience() {
|
|
return this.experience;
|
|
}
|
|
|
|
public void setExperience(String newExperience) {
|
|
this.experience = newExperience;
|
|
}
|
|
|
|
public String getInstitutionName() {
|
|
return this.institutionName;
|
|
}
|
|
|
|
public void setInstitutionName(String newInstitutionName) {
|
|
this.institutionName = newInstitutionName;
|
|
}
|
|
|
|
public String getTrgFacMstEmpId() {
|
|
return this.trgFacMstEmpId;
|
|
}
|
|
|
|
public void setTrgFacMstEmpId(String newTrgFacMstEmpId) {
|
|
this.trgFacMstEmpId = newTrgFacMstEmpId;
|
|
}
|
|
|
|
public String getTrgFacMstInstCode() {
|
|
return this.trgFacMstInstCode;
|
|
}
|
|
|
|
public void setTrgFacMstInstCode(String newTrgFacMstInstCode) {
|
|
this.trgFacMstInstCode = newTrgFacMstInstCode;
|
|
}
|
|
}
|