Files
HRMS/hrmsEjb/wenrgise/hrms/vo/HrmLvCancQueryQVO.java
2025-07-28 13:56:49 +05:30

87 lines
1.8 KiB
Java

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;
}
}