first commit

This commit is contained in:
2025-07-28 13:56:49 +05:30
commit e9eb805edb
3438 changed files with 520990 additions and 0 deletions

View File

@@ -0,0 +1,116 @@
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;
}
}