117 lines
3.2 KiB
Java
117 lines
3.2 KiB
Java
package wenrgise.hrms.bean;
|
|
|
|
import java.io.Serializable;
|
|
import wenrgise.common.bean.BaseDetailBean;
|
|
|
|
public class HrmLnMstDtlBean extends BaseDetailBean implements Serializable {
|
|
private String txtLoanDetailCode;
|
|
|
|
private String txtGreaterLessNotApplicable;
|
|
|
|
private String txtMaxLimit;
|
|
|
|
private String txtMaximumLoanPerc;
|
|
|
|
private String txtNoOfMonthsSalary;
|
|
|
|
private String txtCompanyPolicyStDate;
|
|
|
|
private boolean txtAppliedToAllEmployee;
|
|
|
|
String txtCompanyPolicyToDate;
|
|
|
|
String allEmployeeApplicable = "N";
|
|
|
|
private String txtMinYrsOfServiceToBeCompleted;
|
|
|
|
private String txtMinYrsOfRemainingService;
|
|
|
|
public String getTxtLoanDetailCode() {
|
|
return this.txtLoanDetailCode;
|
|
}
|
|
|
|
public void setTxtLoanDetailCode(String newTxtLoanDetailCode) {
|
|
this.txtLoanDetailCode = newTxtLoanDetailCode;
|
|
}
|
|
|
|
public String getTxtGreaterLessNotApplicable() {
|
|
return this.txtGreaterLessNotApplicable;
|
|
}
|
|
|
|
public void setTxtGreaterLessNotApplicable(String newTxtGreaterLessNotApplicable) {
|
|
this.txtGreaterLessNotApplicable = newTxtGreaterLessNotApplicable;
|
|
}
|
|
|
|
public String getTxtMaxLimit() {
|
|
return this.txtMaxLimit;
|
|
}
|
|
|
|
public void setTxtMaxLimit(String newTxtMaxLimit) {
|
|
this.txtMaxLimit = newTxtMaxLimit;
|
|
}
|
|
|
|
public String getTxtMaximumLoanPerc() {
|
|
return this.txtMaximumLoanPerc;
|
|
}
|
|
|
|
public void setTxtMaximumLoanPerc(String newTxtMaximumLoanPerc) {
|
|
this.txtMaximumLoanPerc = newTxtMaximumLoanPerc;
|
|
}
|
|
|
|
public String getTxtNoOfMonthsSalary() {
|
|
return this.txtNoOfMonthsSalary;
|
|
}
|
|
|
|
public void setTxtNoOfMonthsSalary(String newTxtNoOfMonthsSalary) {
|
|
this.txtNoOfMonthsSalary = newTxtNoOfMonthsSalary;
|
|
}
|
|
|
|
public String getTxtCompanyPolicyStDate() {
|
|
return this.txtCompanyPolicyStDate;
|
|
}
|
|
|
|
public void setTxtCompanyPolicyStDate(String newTxtCompanyPolicyStDate) {
|
|
this.txtCompanyPolicyStDate = newTxtCompanyPolicyStDate;
|
|
}
|
|
|
|
public boolean getTxtAppliedToAllEmployee() {
|
|
return this.txtAppliedToAllEmployee;
|
|
}
|
|
|
|
public void setTxtAppliedToAllEmployee(boolean newTxtAppliedToAllEmployee) {
|
|
this.txtAppliedToAllEmployee = newTxtAppliedToAllEmployee;
|
|
}
|
|
|
|
public String getTxtCompanyPolicyToDate() {
|
|
return this.txtCompanyPolicyToDate;
|
|
}
|
|
|
|
public void setTxtCompanyPolicyToDate(String newTxtCompanyPolicyToDate) {
|
|
this.txtCompanyPolicyToDate = newTxtCompanyPolicyToDate;
|
|
}
|
|
|
|
public String getAllEmployeeApplicable() {
|
|
return this.allEmployeeApplicable;
|
|
}
|
|
|
|
public void setAllEmployeeApplicable(String newAllEmployeeApplicable) {
|
|
this.allEmployeeApplicable = newAllEmployeeApplicable;
|
|
}
|
|
|
|
public String getTxtMinYrsOfServiceToBeCompleted() {
|
|
return this.txtMinYrsOfServiceToBeCompleted;
|
|
}
|
|
|
|
public void setTxtMinYrsOfServiceToBeCompleted(String newTxtMinYrsOfServiceToBeCompleted) {
|
|
this.txtMinYrsOfServiceToBeCompleted = newTxtMinYrsOfServiceToBeCompleted;
|
|
}
|
|
|
|
public String getTxtMinYrsOfRemainingService() {
|
|
return this.txtMinYrsOfRemainingService;
|
|
}
|
|
|
|
public void setTxtMinYrsOfRemainingService(String newTxtMinYrsOfRemainingService) {
|
|
this.txtMinYrsOfRemainingService = newTxtMinYrsOfRemainingService;
|
|
}
|
|
}
|