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,66 @@
package wenrgise.hrms.bean;
import java.io.Serializable;
import wenrgise.common.bean.BaseHeaderBean;
public class HrmLvApplnQueryHdrBean extends BaseHeaderBean implements Serializable {
private String employeeNo;
private String leaveCode;
private String leaveDescription;
private String fromDate;
private String toDate;
private String statusOfLeave;
public String getEmployeeNo() {
return this.employeeNo;
}
public void setEmployeeNo(String newEmployeeNo) {
this.employeeNo = newEmployeeNo;
}
public String getLeaveCode() {
return this.leaveCode;
}
public void setLeaveCode(String newLeaveCode) {
this.leaveCode = newLeaveCode;
}
public String getLeaveDescription() {
return this.leaveDescription;
}
public void setLeaveDescription(String newLeaveDescription) {
this.leaveDescription = newLeaveDescription;
}
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 getStatusOfLeave() {
return this.statusOfLeave;
}
public void setStatusOfLeave(String newStatusOfLeave) {
this.statusOfLeave = newStatusOfLeave;
}
}