first commit
This commit is contained in:
@@ -0,0 +1,176 @@
|
||||
package WEB-INF.classes.wenrgise.hrms.bean;
|
||||
|
||||
import java.io.Serializable;
|
||||
import wenrgise.common.bean.BaseDetailBean;
|
||||
|
||||
public class HrmSepOrderDtlBean extends BaseDetailBean implements Serializable {
|
||||
private String txtSepDtlId;
|
||||
|
||||
private String txtApplnNo;
|
||||
|
||||
private String txtEmpId;
|
||||
|
||||
private String txtApprovedFlag;
|
||||
|
||||
private String txtRejectionRemarks;
|
||||
|
||||
private String txtReason;
|
||||
|
||||
private String txtActualSepDate;
|
||||
|
||||
private String txtRequestedSepDate;
|
||||
|
||||
private String txtSeparationCategory;
|
||||
|
||||
private String txtEmployeeName;
|
||||
|
||||
private String txtApplnId;
|
||||
|
||||
private String txtApplnDate;
|
||||
|
||||
private String disabbutApplnNo;
|
||||
|
||||
private String disabbutActualSepDate;
|
||||
|
||||
private String disabtxtReason;
|
||||
|
||||
private String disabtxtRejectionRemarks;
|
||||
|
||||
private String hdnTempFlag;
|
||||
|
||||
public String getTxtSepDtlId() {
|
||||
return this.txtSepDtlId;
|
||||
}
|
||||
|
||||
public void setTxtSepDtlId(String newTxtSepDtlId) {
|
||||
this.txtSepDtlId = newTxtSepDtlId;
|
||||
}
|
||||
|
||||
public String getTxtApplnNo() {
|
||||
return this.txtApplnNo;
|
||||
}
|
||||
|
||||
public void setTxtApplnNo(String newTxtApplnNo) {
|
||||
this.txtApplnNo = newTxtApplnNo;
|
||||
}
|
||||
|
||||
public String getTxtEmpId() {
|
||||
return this.txtEmpId;
|
||||
}
|
||||
|
||||
public void setTxtEmpId(String newTxtEmpId) {
|
||||
this.txtEmpId = newTxtEmpId;
|
||||
}
|
||||
|
||||
public String getTxtApprovedFlag() {
|
||||
return this.txtApprovedFlag;
|
||||
}
|
||||
|
||||
public void setTxtApprovedFlag(String newTxtApprovedFlag) {
|
||||
this.txtApprovedFlag = newTxtApprovedFlag;
|
||||
}
|
||||
|
||||
public String getTxtRejectionRemarks() {
|
||||
return this.txtRejectionRemarks;
|
||||
}
|
||||
|
||||
public void setTxtRejectionRemarks(String newTxtRejectionRemarks) {
|
||||
this.txtRejectionRemarks = newTxtRejectionRemarks;
|
||||
}
|
||||
|
||||
public String getTxtReason() {
|
||||
return this.txtReason;
|
||||
}
|
||||
|
||||
public void setTxtReason(String newTxtReason) {
|
||||
this.txtReason = newTxtReason;
|
||||
}
|
||||
|
||||
public String getTxtActualSepDate() {
|
||||
return this.txtActualSepDate;
|
||||
}
|
||||
|
||||
public void setTxtActualSepDate(String newTxtActualSepDate) {
|
||||
this.txtActualSepDate = newTxtActualSepDate;
|
||||
}
|
||||
|
||||
public String getTxtRequestedSepDate() {
|
||||
return this.txtRequestedSepDate;
|
||||
}
|
||||
|
||||
public void setTxtRequestedSepDate(String newTxtRequestedSepDate) {
|
||||
this.txtRequestedSepDate = newTxtRequestedSepDate;
|
||||
}
|
||||
|
||||
public String getTxtSeparationCategory() {
|
||||
return this.txtSeparationCategory;
|
||||
}
|
||||
|
||||
public void setTxtSeparationCategory(String newTxtSeparationCategory) {
|
||||
this.txtSeparationCategory = newTxtSeparationCategory;
|
||||
}
|
||||
|
||||
public String getTxtEmployeeName() {
|
||||
return this.txtEmployeeName;
|
||||
}
|
||||
|
||||
public void setTxtEmployeeName(String newTxtEmployeeName) {
|
||||
this.txtEmployeeName = newTxtEmployeeName;
|
||||
}
|
||||
|
||||
public String getTxtApplnId() {
|
||||
return this.txtApplnId;
|
||||
}
|
||||
|
||||
public void setTxtApplnId(String newTxtApplnId) {
|
||||
this.txtApplnId = newTxtApplnId;
|
||||
}
|
||||
|
||||
public String getTxtApplnDate() {
|
||||
return this.txtApplnDate;
|
||||
}
|
||||
|
||||
public void setTxtApplnDate(String newTxtApplnDate) {
|
||||
this.txtApplnDate = newTxtApplnDate;
|
||||
}
|
||||
|
||||
public String getDisabbutApplnNo() {
|
||||
return this.disabbutApplnNo;
|
||||
}
|
||||
|
||||
public void setDisabbutApplnNo(String newDisabbutApplnNo) {
|
||||
this.disabbutApplnNo = newDisabbutApplnNo;
|
||||
}
|
||||
|
||||
public String getDisabbutActualSepDate() {
|
||||
return this.disabbutActualSepDate;
|
||||
}
|
||||
|
||||
public void setDisabbutActualSepDate(String newDisabbutActualSepDate) {
|
||||
this.disabbutActualSepDate = newDisabbutActualSepDate;
|
||||
}
|
||||
|
||||
public String getDisabtxtReason() {
|
||||
return this.disabtxtReason;
|
||||
}
|
||||
|
||||
public void setDisabtxtReason(String newDisabtxtReason) {
|
||||
this.disabtxtReason = newDisabtxtReason;
|
||||
}
|
||||
|
||||
public String getDisabtxtRejectionRemarks() {
|
||||
return this.disabtxtRejectionRemarks;
|
||||
}
|
||||
|
||||
public void setDisabtxtRejectionRemarks(String newDisabtxtRejectionRemarks) {
|
||||
this.disabtxtRejectionRemarks = newDisabtxtRejectionRemarks;
|
||||
}
|
||||
|
||||
public String getHdnTempFlag() {
|
||||
return this.hdnTempFlag;
|
||||
}
|
||||
|
||||
public void setHdnTempFlag(String newHdnTempFlag) {
|
||||
this.hdnTempFlag = newHdnTempFlag;
|
||||
}
|
||||
}
|
Reference in New Issue
Block a user