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

77 lines
1.5 KiB
Java

package wenrgise.hrms.vo;
import java.io.Serializable;
import wenrgise.common.vo.BaseQueryVO;
public class HrmLvLedgerQVO extends BaseQueryVO implements Serializable {
private String employeeNo;
private String leaveType;
private String hdnDetailId;
private String leavesType;
private String leavesTaken;
private String leavesEncashed;
private String leaveCode;
public String getEmployeeNo() {
return this.employeeNo;
}
public void setEmployeeNo(String newEmployeeNo) {
this.employeeNo = newEmployeeNo;
}
public String getLeaveType() {
return this.leaveType;
}
public void setLeaveType(String newLeaveType) {
this.leaveType = newLeaveType;
}
public String getHdnDetailId() {
return this.hdnDetailId;
}
public void setHdnDetailId(String newHdnDetailId) {
this.hdnDetailId = newHdnDetailId;
}
public String getLeavesType() {
return this.leavesType;
}
public void setLeavesType(String newLeavesType) {
this.leavesType = newLeavesType;
}
public String getLeavesTaken() {
return this.leavesTaken;
}
public void setLeavesTaken(String newLeavesTaken) {
this.leavesTaken = newLeavesTaken;
}
public String getLeavesEncashed() {
return this.leavesEncashed;
}
public void setLeavesEncashed(String newLeavesEncashed) {
this.leavesEncashed = newLeavesEncashed;
}
public String getLeaveCode() {
return this.leaveCode;
}
public void setLeaveCode(String newLeaveCode) {
this.leaveCode = newLeaveCode;
}
}