137 lines
2.6 KiB
Java
137 lines
2.6 KiB
Java
package wenrgise.hrms.bean;
|
|
|
|
import java.io.Serializable;
|
|
import wenrgise.common.bean.BaseHeaderBean;
|
|
|
|
public class HrmEmpPersHdrBean extends BaseHeaderBean implements Serializable {
|
|
String employeeNo;
|
|
|
|
String checkDigit;
|
|
|
|
String accessCardNo;
|
|
|
|
String employeeName;
|
|
|
|
String firstName;
|
|
|
|
String middleName;
|
|
|
|
String lastName;
|
|
|
|
String draftFlag;
|
|
|
|
String draftSave;
|
|
|
|
String picturePath;
|
|
|
|
private String empNumberId;
|
|
|
|
private String visibilityFlag;
|
|
|
|
private String mode;
|
|
|
|
public String getEmployeeNo() {
|
|
return this.employeeNo;
|
|
}
|
|
|
|
public void setEmployeeNo(String newEmployeeNo) {
|
|
this.employeeNo = newEmployeeNo;
|
|
}
|
|
|
|
public String getCheckDigit() {
|
|
return this.checkDigit;
|
|
}
|
|
|
|
public void setCheckDigit(String newCheckDigit) {
|
|
this.checkDigit = newCheckDigit;
|
|
}
|
|
|
|
public String getAccessCardNo() {
|
|
return this.accessCardNo;
|
|
}
|
|
|
|
public void setAccessCardNo(String newAccessCardNo) {
|
|
this.accessCardNo = newAccessCardNo;
|
|
}
|
|
|
|
public String getEmployeeName() {
|
|
return this.employeeName;
|
|
}
|
|
|
|
public void setEmployeeName(String newEmployeeName) {
|
|
this.employeeName = newEmployeeName;
|
|
}
|
|
|
|
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 getDraftFlag() {
|
|
return this.draftFlag;
|
|
}
|
|
|
|
public void setDraftFlag(String newDraftFlag) {
|
|
this.draftFlag = newDraftFlag;
|
|
}
|
|
|
|
public String getDraftSave() {
|
|
return this.draftSave;
|
|
}
|
|
|
|
public void setDraftSave(String newDraftSave) {
|
|
this.draftSave = newDraftSave;
|
|
}
|
|
|
|
public String getPicturePath() {
|
|
return this.picturePath;
|
|
}
|
|
|
|
public void setPicturePath(String newPicturePath) {
|
|
this.picturePath = newPicturePath;
|
|
}
|
|
|
|
public String getEmpNumberId() {
|
|
return this.empNumberId;
|
|
}
|
|
|
|
public void setEmpNumberId(String newEmpNumberId) {
|
|
this.empNumberId = newEmpNumberId;
|
|
}
|
|
|
|
public String getVisibilityFlag() {
|
|
return this.visibilityFlag;
|
|
}
|
|
|
|
public void setVisibilityFlag(String newVisibilityFlag) {
|
|
this.visibilityFlag = newVisibilityFlag;
|
|
}
|
|
|
|
public String getMode() {
|
|
return this.mode;
|
|
}
|
|
|
|
public void setMode(String newMode) {
|
|
this.mode = newMode;
|
|
}
|
|
}
|