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,276 @@
package wenrgise.hrms.bean;
import java.io.Serializable;
import wenrgise.common.bean.BaseHeaderBean;
public class HrmLvEncashHdrBean extends BaseHeaderBean implements Serializable {
private String employeeNumber;
private String dateApplied;
private String leaveCodes;
private String description;
private String daysEncashed;
private String changeStatus;
private String firstName;
private String middleName;
private String lastName;
private String employeeName;
private String designation;
private String fromDate;
private String toDate;
private String encashedAmount;
private String leaveCodeId;
private String employeeId;
private String totalEncashLimit;
private String totalDaysEncashed;
private String grade;
private String location;
private String taxAmount;
private String pfDeduction;
private String eligibleAmount;
private String level;
private String lvTxnId;
private String lvApplnFromDate;
private String lvApplnToDate;
public String getEmployeeNumber() {
return this.employeeNumber;
}
public void setEmployeeNumber(String newEmployeeNumber) {
this.employeeNumber = newEmployeeNumber;
}
public String getDateApplied() {
return this.dateApplied;
}
public void setDateApplied(String newDateApplied) {
this.dateApplied = newDateApplied;
}
public String getLeaveCodes() {
return this.leaveCodes;
}
public void setLeaveCodes(String newLeaveCodes) {
this.leaveCodes = newLeaveCodes;
}
public String getDescription() {
return this.description;
}
public void setDescription(String newDescription) {
this.description = newDescription;
}
public String getDaysEncashed() {
return this.daysEncashed;
}
public void setDaysEncashed(String newDaysEncashed) {
this.daysEncashed = newDaysEncashed;
}
public String getChangeStatus() {
return this.changeStatus;
}
public void setChangeStatus(String newChangeStatus) {
this.changeStatus = newChangeStatus;
}
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 getEmployeeName() {
return this.employeeName;
}
public void setEmployeeName(String newEmployeeName) {
this.employeeName = newEmployeeName;
}
public String getDesignation() {
return this.designation;
}
public void setDesignation(String newDesignation) {
this.designation = newDesignation;
}
public String getFromDate() {
return this.fromDate;
}
public void setFromDate(String newFromDate) {
this.fromDate = newFromDate;
}
public String getToDate() {
return this.toDate;
}
public void setToDate(String newToDate) {
this.toDate = newToDate;
}
public String getEncashedAmount() {
return this.encashedAmount;
}
public void setEncashedAmount(String newEncashedAmount) {
this.encashedAmount = newEncashedAmount;
}
public String getLeaveCodeId() {
return this.leaveCodeId;
}
public void setLeaveCodeId(String newLeaveCodeId) {
this.leaveCodeId = newLeaveCodeId;
}
public String getEmployeeId() {
return this.employeeId;
}
public void setEmployeeId(String newEmployeeId) {
this.employeeId = newEmployeeId;
}
public String getTotalEncashLimit() {
return this.totalEncashLimit;
}
public void setTotalEncashLimit(String newTotalEncashLimit) {
this.totalEncashLimit = newTotalEncashLimit;
}
public String getTotalDaysEncashed() {
return this.totalDaysEncashed;
}
public void setTotalDaysEncashed(String newTotalDaysEncashed) {
this.totalDaysEncashed = newTotalDaysEncashed;
}
public String getGrade() {
return this.grade;
}
public void setGrade(String newGrade) {
this.grade = newGrade;
}
public String getLocation() {
return this.location;
}
public void setLocation(String newLocation) {
this.location = newLocation;
}
public String getTaxAmount() {
return this.taxAmount;
}
public void setTaxAmount(String newTaxAmount) {
this.taxAmount = newTaxAmount;
}
public String getPfDeduction() {
return this.pfDeduction;
}
public void setPfDeduction(String newPfDeduction) {
this.pfDeduction = newPfDeduction;
}
public String getEligibleAmount() {
return this.eligibleAmount;
}
public void setEligibleAmount(String newEligibleAmount) {
this.eligibleAmount = newEligibleAmount;
}
public String getLevel() {
return this.level;
}
public void setLevel(String newLevel) {
this.level = newLevel;
}
public String getLvTxnId() {
return this.lvTxnId;
}
public void setLvTxnId(String newLvTxnId) {
this.lvTxnId = newLvTxnId;
}
public String getLvApplnFromDate() {
return this.lvApplnFromDate;
}
public void setLvApplnFromDate(String newLvApplnFromDate) {
this.lvApplnFromDate = newLvApplnFromDate;
}
public String getLvApplnToDate() {
return this.lvApplnToDate;
}
public void setLvApplnToDate(String newLvApplnToDate) {
this.lvApplnToDate = newLvApplnToDate;
}
}