first commit
This commit is contained in:
@@ -0,0 +1,136 @@
|
||||
package WEB-INF.classes.wenrgise.hrms.bean;
|
||||
|
||||
import java.io.Serializable;
|
||||
import wenrgise.common.bean.BaseDetailBean;
|
||||
|
||||
public class HrmSepApplnDtlBean extends BaseDetailBean implements Serializable {
|
||||
private String txtEmployeeNo;
|
||||
|
||||
private String txtEmployeeName;
|
||||
|
||||
private String txtSeparationCategory;
|
||||
|
||||
private String txtImmediateEffect;
|
||||
|
||||
private String txtRequestedSepDate;
|
||||
|
||||
private String txtActualSepDate;
|
||||
|
||||
private String txtReason;
|
||||
|
||||
private String txtRejectionRemarks;
|
||||
|
||||
private String txtApprovedFlag;
|
||||
|
||||
private String txtWithdrawalFlag;
|
||||
|
||||
private String txtEmpId;
|
||||
|
||||
private String txtSepId;
|
||||
|
||||
private String txtSepCode;
|
||||
|
||||
public String getTxtEmployeeNo() {
|
||||
return this.txtEmployeeNo;
|
||||
}
|
||||
|
||||
public void setTxtEmployeeNo(String newTxtEmployeeNo) {
|
||||
this.txtEmployeeNo = newTxtEmployeeNo;
|
||||
}
|
||||
|
||||
public String getTxtEmployeeName() {
|
||||
return this.txtEmployeeName;
|
||||
}
|
||||
|
||||
public void setTxtEmployeeName(String newTxtEmployeeName) {
|
||||
this.txtEmployeeName = newTxtEmployeeName;
|
||||
}
|
||||
|
||||
public String getTxtSeparationCategory() {
|
||||
return this.txtSeparationCategory;
|
||||
}
|
||||
|
||||
public void setTxtSeparationCategory(String newTxtSeparationCategory) {
|
||||
this.txtSeparationCategory = newTxtSeparationCategory;
|
||||
}
|
||||
|
||||
public String getTxtImmediateEffect() {
|
||||
return this.txtImmediateEffect;
|
||||
}
|
||||
|
||||
public void setTxtImmediateEffect(String newTxtImmediateEffect) {
|
||||
this.txtImmediateEffect = newTxtImmediateEffect;
|
||||
}
|
||||
|
||||
public String getTxtRequestedSepDate() {
|
||||
return this.txtRequestedSepDate;
|
||||
}
|
||||
|
||||
public void setTxtRequestedSepDate(String newTxtRequestedSepDate) {
|
||||
this.txtRequestedSepDate = newTxtRequestedSepDate;
|
||||
}
|
||||
|
||||
public String getTxtActualSepDate() {
|
||||
return this.txtActualSepDate;
|
||||
}
|
||||
|
||||
public void setTxtActualSepDate(String newTxtActualSepDate) {
|
||||
this.txtActualSepDate = newTxtActualSepDate;
|
||||
}
|
||||
|
||||
public String getTxtReason() {
|
||||
return this.txtReason;
|
||||
}
|
||||
|
||||
public void setTxtReason(String newTxtReason) {
|
||||
this.txtReason = newTxtReason;
|
||||
}
|
||||
|
||||
public String getTxtRejectionRemarks() {
|
||||
return this.txtRejectionRemarks;
|
||||
}
|
||||
|
||||
public void setTxtRejectionRemarks(String newTxtRejectionRemarks) {
|
||||
this.txtRejectionRemarks = newTxtRejectionRemarks;
|
||||
}
|
||||
|
||||
public String getTxtApprovedFlag() {
|
||||
return this.txtApprovedFlag;
|
||||
}
|
||||
|
||||
public void setTxtApprovedFlag(String newTxtApprovedFlag) {
|
||||
this.txtApprovedFlag = newTxtApprovedFlag;
|
||||
}
|
||||
|
||||
public String getTxtWithdrawalFlag() {
|
||||
return this.txtWithdrawalFlag;
|
||||
}
|
||||
|
||||
public void setTxtWithdrawalFlag(String newTxtWithdrawalFlag) {
|
||||
this.txtWithdrawalFlag = newTxtWithdrawalFlag;
|
||||
}
|
||||
|
||||
public String getTxtEmpId() {
|
||||
return this.txtEmpId;
|
||||
}
|
||||
|
||||
public void setTxtEmpId(String newTxtEmpId) {
|
||||
this.txtEmpId = newTxtEmpId;
|
||||
}
|
||||
|
||||
public String getTxtSepId() {
|
||||
return this.txtSepId;
|
||||
}
|
||||
|
||||
public void setTxtSepId(String newTxtSepId) {
|
||||
this.txtSepId = newTxtSepId;
|
||||
}
|
||||
|
||||
public String getTxtSepCode() {
|
||||
return this.txtSepCode;
|
||||
}
|
||||
|
||||
public void setTxtSepCode(String newTxtSepCode) {
|
||||
this.txtSepCode = newTxtSepCode;
|
||||
}
|
||||
}
|
Reference in New Issue
Block a user