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,86 @@
package wenrgise.hrms.vo;
import java.io.Serializable;
import wenrgise.common.vo.BaseQueryVO;
public class HrmLvCancQueryQVO extends BaseQueryVO implements Serializable {
private String employeeNumber;
private String leaveType;
private String cancelFromDate;
private String cancelToDate;
private String cancellationStatus;
String empId;
private String empName;
String leaveTypeId;
public String getEmployeeNumber() {
return this.employeeNumber;
}
public void setEmployeeNumber(String newEmployeeNumber) {
this.employeeNumber = newEmployeeNumber;
}
public String getLeaveType() {
return this.leaveType;
}
public void setLeaveType(String newLeaveType) {
this.leaveType = newLeaveType;
}
public String getCancelFromDate() {
return this.cancelFromDate;
}
public void setCancelFromDate(String newCancelFromDate) {
this.cancelFromDate = newCancelFromDate;
}
public String getCancelToDate() {
return this.cancelToDate;
}
public void setCancelToDate(String newCancelToDate) {
this.cancelToDate = newCancelToDate;
}
public String getCancellationStatus() {
return this.cancellationStatus;
}
public void setCancellationStatus(String newCancellationStatus) {
this.cancellationStatus = newCancellationStatus;
}
public String getEmpId() {
return this.empId;
}
public void setEmpId(String newEmpId) {
this.empId = newEmpId;
}
public String getEmpName() {
return this.empName;
}
public void setEmpName(String newEmpName) {
this.empName = newEmpName;
}
public String getLeaveTypeId() {
return this.leaveTypeId;
}
public void setLeaveTypeId(String newLeaveTypeId) {
this.leaveTypeId = newLeaveTypeId;
}
}